Skip to content

Commit 0cb943c

Browse files
committed
IONOS: fix(Viewer): fix image load error with number folder
Signed-off-by: Franziska Bath <[email protected]>
1 parent 8e81485 commit 0cb943c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/fileUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ const sortCompare = function(fileInfo1, fileInfo2, key, asc = true) {
7777
}
7878
// finally sort by name
7979
return asc
80-
? fileInfo1[key].localeCompare(fileInfo2[key], OC.getLanguage(), { numeric: true })
81-
: -fileInfo1[key].localeCompare(fileInfo2[key], OC.getLanguage(), { numeric: true })
80+
? fileInfo1[key].toString()?.localeCompare(fileInfo2[key].toString(), OC.getLanguage(), { numeric: true })
81+
: -fileInfo1[key].toString()?.localeCompare(fileInfo2[key].toString(), OC.getLanguage(), { numeric: true })
8282
}
8383

8484
export type FileInfo = object

0 commit comments

Comments
 (0)