通过数据库判断压缩文件是否在书架上

This commit is contained in:
Xwite
2023-03-17 12:29:54 +08:00
parent 17d30627e7
commit 2f2ea7daa0

View File

@@ -101,7 +101,7 @@ interface BookDao {
@Query("select 1 from books where bookUrl = :bookUrl")
fun has(bookUrl: String): Boolean?
@Query("select 1 from books where originName = :fileName or origin = ${BookType.localTag} || '::' || :fileName")
@Query("select 1 from books where originName = :fileName or origin like '%' || :fileName")
fun hasFile(fileName: String): Boolean?
@Insert(onConflict = OnConflictStrategy.REPLACE)