From 22b91a164b91bb7f58816f8019b4e2b5f62369dd Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Thu, 20 Feb 2025 10:08:33 +0530 Subject: [PATCH] [mob][photos] Sign that smart memories are for internal users only --- mobile/lib/models/smart_memory.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/models/smart_memory.dart b/mobile/lib/models/smart_memory.dart index 0c16b64c16..fa5f2524a7 100644 --- a/mobile/lib/models/smart_memory.dart +++ b/mobile/lib/models/smart_memory.dart @@ -17,10 +17,10 @@ abstract class SmartMemory { SmartMemory( this.memories, this.type, { - this.name, + name, this.firstCreationTime, this.lastCreationTime, - }); + }) : name = name != null ? name + "(I)" : null; int averageCreationTime() { if (firstCreationTime != null && lastCreationTime != null) {