RobK / photobox-downloader

NodeJS app to download all photos from Photobox website
MIT License
12 stars 11 forks source link

getAlbumPages doesn't work for albums with more than 50 but less than 100 images #1

Closed tomdbarker closed 9 years ago

tomdbarker commented 9 years ago

The fix for this is simply to change the line:

if (album.count > 100) { pageLinks.push(pageLink);

to:

if (album.count > thumbsPerPage) { pageLinks.push(pageLink);

RobK commented 9 years ago

I somehow missed this, thanks for the report and bug fix, much appreciated. I'll push an update to GitHub and NPM with the fix.

RobK commented 9 years ago

Fix pushed to master