瀏覽代碼

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.
arkon 2 年之前
父節點
當前提交
dd6c9ce2fe
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      app/src/main/sqldelight/data/mangas.sq

+ 3 - 1
app/src/main/sqldelight/data/mangas.sq

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