diff --git a/mobile/lib/domain/models/exif.model.dart b/mobile/lib/domain/models/exif.model.dart index 45b787d586..97c0ba3823 100644 --- a/mobile/lib/domain/models/exif.model.dart +++ b/mobile/lib/domain/models/exif.model.dart @@ -29,7 +29,7 @@ class ExifInfo { bool get hasCoordinates => latitude != null && longitude != null && latitude != 0 && longitude != 0; String get exposureTime { - if (exposureSeconds == null) { + if (exposureSeconds == null || exposureSeconds! <= 0 || exposureSeconds!.isNaN) { return ""; } if (exposureSeconds! < 1) {