Skip to content

Commit b5a102d

Browse files
authored
Merge pull request #2946 from nextcloud/fix/wrongOwnerTypeII
2 parents b5f2d7f + 41f2314 commit b5a102d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/fileUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export function genFileInfo(obj: FileStat): FileInfo {
144144
fileInfo[camelcase(key)] = true
145145
} else {
146146
// preserve string typed properties as string (FileStat interface in webdav)
147-
const stringTypedProperties = ['filename', 'basename', 'owner-Id']
147+
const stringTypedProperties = ['filename', 'basename', 'owner-id']
148148
if (stringTypedProperties.includes(key)) {
149149
fileInfo[camelcase(key)] = String(data)
150150
return

0 commit comments

Comments
 (0)