fixed tracking

This commit is contained in:
2025-12-07 23:32:27 +01:00
parent 2dcc2f425e
commit 72dc2deab9
5 changed files with 71 additions and 36 deletions

View File

@@ -117,9 +117,9 @@ function renderContinueWatching(id, list) {
const ep = item.progress || 1;
if (item.source === 'anilist') {
window.location.href = `http://localhost:54322/watch/${item.entry_id}/${ep}`;
window.location.href = `http://localhost:54322/watch/${item.entry_id}/${ep + 1}`;
} else {
window.location.href = `http://localhost:54322/watch/${item.entry_id}/${ep}?${item.source}`;
window.location.href = `http://localhost:54322/watch/${item.entry_id}/${ep + 1}?${item.source}`;
}
};