Browse Source

fix crash when attachment has no size information

pull/5114/head
Conny Duck 10 months ago
parent
commit
75eda3fa1a
No known key found for this signature in database
  1. 4
      app/src/main/java/com/keylesspalace/tusky/util/AttachmentHelper.kt

4
app/src/main/java/com/keylesspalace/tusky/util/AttachmentHelper.kt

@ -28,7 +28,9 @@ fun List<Attachment>.aspectRatios(): List<Double> {
return map { attachment -> return map { attachment ->
// clamp ratio between 2:1 & 1:2, defaulting to 16:9 // clamp ratio between 2:1 & 1:2, defaulting to 16:9
val size = (attachment.meta?.small ?: attachment.meta?.original) ?: return@map 1.7778 val size = (attachment.meta?.small ?: attachment.meta?.original) ?: return@map 1.7778
val aspect = if (size.aspect > 0) size.aspect else size.width.toDouble() / size.height if (size.aspect > 0) return@map size.aspect
if (size.width == 0 || size.height == 0) return@map 1.7778
val aspect = size.width.toDouble() / size.height
aspect.coerceIn(0.5, 2.0) aspect.coerceIn(0.5, 2.0)
} }
} }

Loading…
Cancel
Save