mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-17 12:49:19 +01:00
Fix for reader crash in < Android 9
This commit is contained in:
parent
b8a98ef5e4
commit
85ed7a7457
@ -658,9 +658,11 @@ class ReaderActivity : BaseRxActivity<ReaderActivityBinding, ReaderPresenter>()
|
|||||||
.onEach { setTrueColor(it) }
|
.onEach { setTrueColor(it) }
|
||||||
.launchIn(scope)
|
.launchIn(scope)
|
||||||
|
|
||||||
preferences.cutoutShort().asFlow()
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
||||||
.onEach { setCutoutShort(it) }
|
preferences.cutoutShort().asFlow()
|
||||||
.launchIn(scope)
|
.onEach { setCutoutShort(it) }
|
||||||
|
.launchIn(scope)
|
||||||
|
}
|
||||||
|
|
||||||
preferences.keepScreenOn().asFlow()
|
preferences.keepScreenOn().asFlow()
|
||||||
.onEach { setKeepScreenOn(it) }
|
.onEach { setKeepScreenOn(it) }
|
||||||
|
Loading…
Reference in New Issue
Block a user