Compare commits

..

No commits in common. "674041a603de3f32c310964af87a7fea8fcba7e0" and "3af159f8e7472723781dee31f4affa7d0fce86c4" have entirely different histories.

3 changed files with 4 additions and 8 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.3.2", "version": "4.3.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.3.2", "version": "4.3.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^1.6.0", "axios": "^1.6.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.3.2", "version": "4.3.0",
"description": "Twitch VOD Manager - Download Twitch VODs easily", "description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js", "main": "dist/main.js",
"author": "xRangerDE", "author": "xRangerDE",

View File

@ -3945,9 +3945,7 @@ ipcMain.handle('start-download', async () => {
saveQueue(downloadQueue); saveQueue(downloadQueue);
emitQueueUpdated(); emitQueueUpdated();
if (!isDownloading) { processQueue();
void processQueue();
}
return true; return true;
}); });
@ -4201,7 +4199,6 @@ app.on('window-all-closed', () => {
if (currentProcess) { if (currentProcess) {
currentProcess.kill(); currentProcess.kill();
} }
saveConfig(config);
flushQueueSave(); flushQueueSave();
if (process.platform !== 'darwin') { if (process.platform !== 'darwin') {
@ -4214,6 +4211,5 @@ app.on('before-quit', () => {
cleanupMetadataCaches('shutdown'); cleanupMetadataCaches('shutdown');
stopDebugLogFlushTimer(true); stopDebugLogFlushTimer(true);
stopAutoUpdatePolling(); stopAutoUpdatePolling();
saveConfig(config);
flushQueueSave(); flushQueueSave();
}); });