Avoid crashing if multiple entries exist for same URL/source

Related to #8331. We'll need to revisit some of the get/insert logic to make sure this doesn't actually happen,
but at least it'll stop crashing for now.

(cherry picked from commit dd6c9ce2feee28b5535e864f27bbc088ac009a99)
This commit is contained in:
arkon 2022-10-31 17:34:19 -04:00 committed by Jobobby04
parent 53a0097741
commit 222762b778

View File

@ -33,10 +33,12 @@ SELECT *
FROM mangas FROM mangas
WHERE _id = :id; WHERE _id = :id;
-- TODO: this should ideally never really have more than 1 result
getMangaByUrlAndSource: getMangaByUrlAndSource:
SELECT * SELECT *
FROM mangas FROM mangas
WHERE url = :url AND source = :source; WHERE url = :url AND source = :source
LIMIT 1;
getFavorites: getFavorites:
SELECT * SELECT *