Compare commits

..

No commits in common. "115e88cd93fa8d48fe1e54fe139b4220159272b4" and "52a22b6ecadfac64e7ea126d29e1a65a2783f61d" have entirely different histories.

3 changed files with 4 additions and 8 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.130.2",
"version": "1.130.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.130.2",
"version": "1.130.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -44,12 +44,8 @@ async function filterUniqueReleases(latestReleases, accReleases) {
}
function needNextPage(releases, uniqueReleases, totalReleases, hasDates, upcoming) {
if (releases.length === 0) {
return false;
}
if (upcoming) {
return uniqueReleases.length > 0 && argv.paginateUpcoming;
if (upcoming && uniqueReleases.length > 0) {
return argv.paginateUpcoming;
}
if (argv.last) {