Skip to content

Commit

Permalink
Fix #1753: Media and Photos views are blank after upgrade to 26.0.1
Browse files Browse the repository at this point in the history
Handle empty fileMetadataSize.

Signed-off-by: umgfoin <umgfoin@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
  • Loading branch information
umgfoin authored and backportbot-nextcloud[bot] committed Apr 24, 2023
1 parent 0cff3a6 commit 5e1823b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/store/files.js
Expand Up @@ -50,9 +50,13 @@ const mutations = {
}

if (file.fileid >= 0) {
file.fileMetadataSizeParsed = JSON.parse(file.fileMetadataSize?.replace(/&quot;/g, '"') ?? '{}')
file.fileMetadataSizeParsed.width = file.fileMetadataSizeParsed?.width ?? 256
file.fileMetadataSizeParsed.height = file.fileMetadataSizeParsed?.height ?? 256
if (file.fileMetadataSize.length > 1) {
file.fileMetadataSizeParsed = JSON.parse(file.fileMetadataSize?.replace(/&quot;/g, '"') ?? '{}')
file.fileMetadataSizeParsed.width = file.fileMetadataSizeParsed?.width ?? 256
file.fileMetadataSizeParsed.height = file.fileMetadataSizeParsed?.height ?? 256
} else {
file.fileMetadataSizeParsed = { width: 256, height: 256 }
}
}

// Make the fileId a string once and for all.
Expand Down

0 comments on commit 5e1823b

Please sign in to comment.