mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:15:14 +01:00
Remove unnecessary DB calls when setting chapter flag defaults
This commit is contained in:
parent
52416ff3a8
commit
8931dbb657
@ -14,12 +14,8 @@ object ChapterSettingsHelper {
|
||||
/**
|
||||
* Updates the global Chapter Settings in Preferences.
|
||||
*/
|
||||
fun setGlobalSettings(manga: Manga?) {
|
||||
manga?.let {
|
||||
prefs.setChapterSettingsDefault(it)
|
||||
db.updateChapterFlags(it).executeAsBlocking()
|
||||
db.updateViewerFlags(it).executeAsBlocking()
|
||||
}
|
||||
fun setGlobalSettings(manga: Manga) {
|
||||
prefs.setChapterSettingsDefault(manga)
|
||||
}
|
||||
|
||||
/**
|
||||
@ -36,7 +32,6 @@ object ChapterSettingsHelper {
|
||||
}
|
||||
|
||||
db.updateChapterFlags(manga).executeAsBlocking()
|
||||
db.updateViewerFlags(manga).executeAsBlocking()
|
||||
}
|
||||
|
||||
/**
|
||||
@ -59,7 +54,6 @@ object ChapterSettingsHelper {
|
||||
}
|
||||
|
||||
db.updateChapterFlags(updatedMangas).executeAsBlocking()
|
||||
db.updateViewerFlags(updatedMangas).executeAsBlocking()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user