Fix filtered scanlators
This commit is contained in:
parent
ae99b733e7
commit
8d7aa4b6a2
1 changed files with 2 additions and 2 deletions
|
|
@ -22,8 +22,8 @@ class MangaFilteredScanlatorsPutResolver : PutResolver<Manga>() {
|
|||
|
||||
fun mapToUpdateQuery(manga: Manga) = UpdateQuery.builder()
|
||||
.table(MangaTable.TABLE)
|
||||
.where("${MangaTable.COL_FILTERED_SCANLATORS} = ?")
|
||||
.whereArgs(manga.filtered_scanlators)
|
||||
.where("${MangaTable.COL_ID} = ?")
|
||||
.whereArgs(manga.id)
|
||||
.build()
|
||||
|
||||
fun mapToContentValues(manga: Manga) = contentValuesOf(
|
||||
|
|
|
|||
Loading…
Reference in a new issue