Browse Source

fix(mobile): fix JSON-format typos in Asset model (#4942)

aphymi 1 year ago
parent
commit
3b11854702
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mobile/lib/shared/models/asset.dart

+ 2 - 2
mobile/lib/shared/models/asset.dart

@@ -419,12 +419,12 @@ class Asset {
   "type": "$type",
   "fileName": "$fileName", 
   "isFavorite": $isFavorite, 
-  "isRemote: $isRemote,
+  "isRemote": $isRemote,
   "storage": "$storage",
   "width": ${width ?? "N/A"},
   "height": ${height ?? "N/A"},
   "isArchived": $isArchived,
-  "isTrashed": $isTrashed,
+  "isTrashed": $isTrashed
 }""";
   }
 }