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

pull/4952/head
aphymi 2023-11-09 21:56:30 +07:00 committed by GitHub
parent 895129c997
commit 3b11854702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

@ -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
}""";
}
}