Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yumata committed Nov 28, 2024
1 parent 1f0eeae commit 28b18f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -10777,7 +10777,7 @@
status.need++;
Api.sources.cub.discussGet(params, function (json) {
status.append('discuss', json);
});
}, status.error.bind(status));
}
}

Expand Down Expand Up @@ -27879,7 +27879,7 @@

if (!params.from_search) {
var isSerial = !!(params.movie.first_air_date || params.movie.last_air_date);
u.searchParams.set('categories', (params.movie.number_of_seasons > 0 ? 5000 : 2000) + (params.movie.original_language == 'ja' ? ',5070' : ''));
u.searchParams.set('categories', (params.movie.number_of_seasons > 0 ? 5000 : 2000) + (params.movie.original_language == 'ja' ? '&categories=5070' : ''));
u.searchParams.set('type', isSerial ? 'tvsearch' : 'search');
}

Expand Down

0 comments on commit 28b18f4

Please sign in to comment.