diff --git a/src/data/service/MangaUpdatesDataService.ts b/src/data/service/MangaUpdatesDataService.ts index 8e8a9c0..ecdc24b 100644 --- a/src/data/service/MangaUpdatesDataService.ts +++ b/src/data/service/MangaUpdatesDataService.ts @@ -10,8 +10,11 @@ export default class MangaUpdatesDataService { const mangaStore = new MangaStore(); const dbStore = new DbStore(); this.findMissingRelations(mangaStore, dbStore, progress) + .catch(_ => {}) .then(_ => this.fetchSeriesUpdates(mangaStore, dbStore, progress)) + .catch(_ => {}) .then(_ => this.fetchSeriesChapterUpdates(mangaStore, dbStore, progress)) + .catch(_ => {}) .then(_ => progress.onFinished()); return progress; }