Catch error loading spots

master
Manuel Kasper 2024-03-26 17:59:57 +01:00
rodzic 38d9e4788c
commit 0f15c1502a
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -56,6 +56,9 @@ class SotaSpotReceiver {
});
this.removeDeletedSpots(minSpotId, currentSpotIds);
this.removeExpiredSpots();
})
.catch(error => {
console.error(error);
});
}