Fix first volume cover preference in MangaDex. (#14044)
This commit is contained in:
parent
89be37a8f3
commit
9a0c04c679
|
@ -6,7 +6,7 @@ ext {
|
||||||
extName = 'MangaDex'
|
extName = 'MangaDex'
|
||||||
pkgNameSuffix = 'all.mangadex'
|
pkgNameSuffix = 'all.mangadex'
|
||||||
extClass = '.MangaDexFactory'
|
extClass = '.MangaDexFactory'
|
||||||
extVersionCode = 171
|
extVersionCode = 172
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -581,7 +581,7 @@ abstract class MangaDex(final override val lang: String, private val dexLang: St
|
||||||
val checkValue = newValue as Boolean
|
val checkValue = newValue as Boolean
|
||||||
|
|
||||||
preferences.edit()
|
preferences.edit()
|
||||||
.putBoolean(MDConstants.getDataSaverPreferenceKey(dexLang), checkValue)
|
.putBoolean(MDConstants.getTryUsingFirstVolumeCoverPrefKey(dexLang), checkValue)
|
||||||
.commit()
|
.commit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue