Browse Source

Fix app crashing when opening ReaderActivity with FAB (#6535)

Andreas 3 years ago
parent
commit
271253fd0b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

+ 2 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

@@ -6,6 +6,7 @@ import android.content.Context
 import android.content.Intent
 import android.graphics.Bitmap
 import android.graphics.drawable.BitmapDrawable
+import android.os.Build
 import android.os.Bundle
 import android.view.LayoutInflater
 import android.view.Menu
@@ -892,7 +893,7 @@ class MangaController :
         val activity = activity ?: return
         val intent = ReaderActivity.newIntent(activity, presenter.manga, chapter)
         activity.apply {
-            if (sharedElement != null) {
+            if (sharedElement != null && Build.VERSION.SDK_INT != Build.VERSION_CODES.O) {
                 val activityOptions = ActivityOptions.makeSceneTransitionAnimation(
                     activity,
                     sharedElement,