From 35e92f77e960c2cc9e41fef67ade53fe69adb745 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 13 Jun 2020 23:42:29 +0200 Subject: [PATCH] add file size to its signature too --- .../kotlin/com/simplemobiletools/gallery/pro/models/Medium.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/models/Medium.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/models/Medium.kt index 50b9bb87c..4bdc2e33c 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/models/Medium.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/models/Medium.kt @@ -88,5 +88,5 @@ data class Medium( return calendar.timeInMillis.toString() } - fun getSignature() = ObjectKey("$path-$modified") + fun getSignature() = ObjectKey("$path-$modified-$size") }