fix ktlint

This commit is contained in:
Bnyro 2023-01-16 14:58:53 +01:00
parent 1641c75146
commit ec49d3e61e

View File

@ -114,7 +114,9 @@ class NowPlayingNotification(
// returns the bitmap on Android 13+, for everything below scaled down to a square // returns the bitmap on Android 13+, for everything below scaled down to a square
bitmap = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) { bitmap = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) {
ImageHelper.getSquareBitmap(bm) ImageHelper.getSquareBitmap(bm)
} else bm } else {
bm
}
callback.onBitmap(bitmap!!) callback.onBitmap(bitmap!!)
} }
.build() .build()