When using download pages wit the following setting:
Torrent download enabled
Automatically start downloading the next page enabled
Archive download if no torrent available disabled
I encountered a bug where the auto page downloader stops if it encounters a page with no gallery with a torrent. I tried fiddling with it and the following seems to fix it on my end. Did not test it exhaustively, so I do not know if this introduces some other problems.
CODE
const attemptPageDownload = function (clickEvent) {
//...
if (typeof clickEvent !== 'undefined' && checkPageCompletion()) {
// Adding this line fixes the auto downloader stopping bug
schedulePageDownload()
return
}