diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-07-11 15:06:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 15:06:03 +0200 |
commit | 2cf8d6d9652a55f81c6800f2e69b71597736c56c (patch) | |
tree | 3e48463d8ebc3c01961243e8e6b1fc10a60133b7 /apps/files/src/store/files.ts | |
parent | 5c6ed30369f5c4edcf46e5e882c6096a7e3cd01e (diff) | |
parent | 74763e875737ea2bb0775194544a809041a2e7d6 (diff) | |
download | nextcloud-server-2cf8d6d9652a55f81c6800f2e69b71597736c56c.tar.gz nextcloud-server-2cf8d6d9652a55f81c6800f2e69b71597736c56c.zip |
Merge pull request #39196 from nextcloud/feat/f2v/sharing
Diffstat (limited to 'apps/files/src/store/files.ts')
-rw-r--r-- | apps/files/src/store/files.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/store/files.ts b/apps/files/src/store/files.ts index ac62512988b..c36ebcfecc2 100644 --- a/apps/files/src/store/files.ts +++ b/apps/files/src/store/files.ts @@ -58,7 +58,7 @@ export const useFilesStore = function(...args) { // Update the store all at once const files = nodes.reduce((acc, node) => { if (!node.fileid) { - logger.warn('Trying to update/set a node without fileid', node) + logger.error('Trying to update/set a node without fileid', node) return acc } acc[node.fileid] = node |