aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2025-05-14 19:23:27 +0200
committernextcloud-command <nextcloud-command@users.noreply.github.com>2025-05-14 17:51:12 +0000
commit7fc031847584cbcfa1e655d099e3f18b00cb6ffc (patch)
tree6b440e15dd5e6d39de37bc30698a2e76fbf07769 /apps/files/src
parent006d4ee95234cc3fcc20d8b7d68d1e379833734c (diff)
downloadnextcloud-server-7fc031847584cbcfa1e655d099e3f18b00cb6ffc.tar.gz
nextcloud-server-7fc031847584cbcfa1e655d099e3f18b00cb6ffc.zip
chore(files): adjust renaming action comment
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r--apps/files/src/store/renaming.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/src/store/renaming.ts b/apps/files/src/store/renaming.ts
index a04ae5acbd6..fc61be3bd3b 100644
--- a/apps/files/src/store/renaming.ts
+++ b/apps/files/src/store/renaming.ts
@@ -88,6 +88,8 @@ export const useRenamingStore = defineStore('renaming', () => {
})
// Update mime type if extension changed
+ // as other related informations might have changed
+ // on the backend but it is really hard to know on the front
if (oldExtension !== newExtension) {
node = await fetchNode(node.path)
}