From 115fd628785f9df2ec4567bfa931319c37626d81 Mon Sep 17 00:00:00 2001 From: Luke McCarthy Date: Sat, 24 Jun 2023 12:36:36 -0400 Subject: [PATCH] update canUpdate to take into account thumbhash --- mobile/lib/shared/models/asset.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/lib/shared/models/asset.dart b/mobile/lib/shared/models/asset.dart index 4cfcea014..a43a88616 100644 --- a/mobile/lib/shared/models/asset.dart +++ b/mobile/lib/shared/models/asset.dart @@ -234,6 +234,7 @@ class Asset { a.isLocal && !isLocal || width == null && a.width != null || height == null && a.height != null || + thumbhash == null && a.thumbhash != null || livePhotoVideoId == null && a.livePhotoVideoId != null || !isRemote && a.isRemote && isFavorite != a.isFavorite || !isRemote && a.isRemote && isArchived != a.isArchived;