Sfoglia il codice sorgente

fixed crash on rotation on API19-

yattoz 4 anni fa
parent
commit
9ea24e2e63

+ 1 - 0
app/src/main/java/fr/forum_thalie/tsumugi/ui/news/NewsFragment.kt Vedi File

90
             100
90
             100
91
 
91
 
92
         if (newsViewModel.screenRatio != newRatio) {
92
         if (newsViewModel.screenRatio != newRatio) {
93
+            if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT)
93
             newsViewModel.fetch((newsViewModel.root as SwipeRefreshLayout), viewAdapter, context!!)
94
             newsViewModel.fetch((newsViewModel.root as SwipeRefreshLayout), viewAdapter, context!!)
94
             newsViewModel.screenRatio = newRatio
95
             newsViewModel.screenRatio = newRatio
95
         }
96
         }