mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
Add try catch in dump database
This commit is contained in:
parent
ce59d3f95f
commit
f5cfd6bfb5
1 changed files with 21 additions and 16 deletions
|
@ -197,6 +197,7 @@ async function queueDump(): Promise<void> {
|
|||
const startTime = Date.now();
|
||||
updateRunning = true;
|
||||
|
||||
try {
|
||||
await removeOutdatedDumps(appExportPath);
|
||||
|
||||
const dumpFiles = [];
|
||||
|
@ -213,8 +214,12 @@ async function queueDump(): Promise<void> {
|
|||
}
|
||||
latestDumpFiles = [...dumpFiles];
|
||||
|
||||
lastUpdate = startTime;
|
||||
} catch(e) {
|
||||
Logger.error(e);
|
||||
} finally {
|
||||
updateQueued = false;
|
||||
updateRunning = false;
|
||||
lastUpdate = startTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue