Added max concurrent downloads setting

Fixed issue where navigating to a subscription video would make the player behave like a playlist for the whole sub
This commit is contained in:
Isaac Abadi
2021-09-15 09:44:31 -06:00
parent dbefb66021
commit 775a1766d8
8 changed files with 18 additions and 7 deletions

View File

@@ -779,7 +779,9 @@ async function autoUpdateYoutubeDL() {
})
.catch(err => {
logger.error(`Failed to check ${default_downloader} version for an update.`)
logger.error(err)
logger.error(err);
resolve(false);
return false;
});
});
}