Dispose diskCache during preSetupTasks cleanup

4490c3edd5b68104d35a947da2fbc1b28fe31034

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -0Showing whitespace changes
server.js+1 -0
@@ -288,6 +288,7 @@ async function preSetupTasks() {
288288 if (typeof cleanupPlugins === 'function') {
289289 await cleanupPlugins();
290290 }
291+ diskCache.dispose();
291292 setWindowTitle(consoleTitle);
292293 process.exit();
293294 };