Skip to content

Commit

Permalink
Minor fix for history url
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Mar 17, 2024
1 parent d14f012 commit 28edaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/src/main/sqldelight/tachiyomi/data/history.sq
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ H.last_read,
H.time_read
FROM history H
JOIN chapters C
ON H.chapter_id = C._id
ON H.chapter_id = C._id AND C.manga_id = :mangaId
WHERE C.manga_id = :mangaId AND C._id = H.chapter_id;

getHistoryByChapterUrl:
Expand Down

0 comments on commit 28edaca

Please sign in to comment.