Skip to content

Commit

Permalink
fix(mobile): fix JSON-format typos in Asset model (immich-app#4942)
Browse files Browse the repository at this point in the history
  • Loading branch information
aphymi authored Nov 10, 2023
1 parent 895129c commit 3b11854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mobile/lib/shared/models/asset.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
}""";
}
}
Expand Down

0 comments on commit 3b11854

Please sign in to comment.