Skip to content

Commit 6e65dcf

Browse files
committed
Fix minor code style issue
1 parent 5f6f3e2 commit 6e65dcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/me/proxer/app/manga/MangaAdapter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class MangaAdapter(savedInstanceState: Bundle?, var isVertical: Boolean) : BaseA
146146
}
147147

148148
// Do not use RapidDecoder on Android M. Crashing when zooming on that specific version.
149-
val shouldUseRapidDecoder = (Build.VERSION.SDK_INT != Build.VERSION_CODES.M && item.name.endsWith("png"))
149+
val shouldUseRapidDecoder = Build.VERSION.SDK_INT != Build.VERSION_CODES.M && item.name.endsWith("png")
150150
val mustUseRapidDecoder = requiresFallback[item.decodedName] == true
151151

152152
if (shouldUseRapidDecoder || mustUseRapidDecoder) {

0 commit comments

Comments
 (0)