diff --git a/config.json b/config.json index 8de61c0..a647344 100644 --- a/config.json +++ b/config.json @@ -10,7 +10,6 @@ "locals().get('bitrate') == 0": "{author['name']}-{tweet_id}-{date:%Y%m%d_%H%M%S}-gif{num}.{extension}", "": "{author['name']}-{tweet_id}-{date:%Y%m%d_%H%M%S}-img{num}.{extension}" }, - "cookies": "$HOME/.config/gallery-dl/twitter-cookies.txt", "timeline": { "strategy": "media" }, diff --git a/lib/dl.js b/lib/dl.js index 998575c..3cc9478 100644 --- a/lib/dl.js +++ b/lib/dl.js @@ -47,19 +47,15 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso const get = () => { const checkError = (currentIndex, type, codeOrError) => { - userDb[currentIndex].logs.push(codeOrError.toString()) - if (typeof codeOrError === 'number' && userDb[currentIndex].running) { + userDb[currentIndex].logs.push(codeOrError.toString()); + if (typeof codeOrError === 'number' && userDb[currentIndex].running === mode) { userDb[currentIndex].running = false; - onFinish(currentIndex, type); + --running; + log(ctx, `Finished (via ${type}) ${userDb[currentIndex].user} under ${mode} mode. ${running} processes still running.`); + get(); } }; - const onFinish = (currentIndex, type) => { - log(ctx, `Finished ${userDb[currentIndex].user} under ${mode} mode.${type === 'close' ? '' : ' (Closed due to ' + type + ')'}`); - --running; - get(); - }; - while (running < threadMax && index < userDb.length) { ++running; let currentIndex = index++; @@ -69,7 +65,7 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso }; let proc = getUser(userDb[currentIndex].user, directory, modeParams); - userDb[currentIndex].running = true; + userDb[currentIndex].running = mode; proc.stdout.on('data', data => { userDb[currentIndex].logs.push(trimNewlinesEnd(data)); });