This commit is contained in:
gedoor 2021-10-15 16:42:26 +08:00
parent d71e33f539
commit 605e5064e0

View File

@ -83,6 +83,9 @@ abstract class AppDatabase : RoomDatabase() {
select ${AppConst.bookGroupNoneId}, '未分组', -7, 1
where not exists (select * from book_groups where groupId = ${AppConst.bookGroupNoneId})"""
)
db.execSQL("update book_sources set loginUi = null where loginUi = 'null'")
db.execSQL("update rssSources set loginUi = null where loginUi = 'null'")
db.execSQL("update httpTTS set loginUi = null where loginUi = 'null'")
}
}