Merge pull request #59657 from nextcloud/backport/59647/stable33

[stable33] fix(files): remove error message when closing the "Open locally" dialog
This commit is contained in:
dsyzov 2026-04-17 06:36:02 +00:00 committed by GitHub
commit 28b4a639f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View file

@ -114,6 +114,11 @@ async function confirmLocalEditDialog(): Promise<'online' | 'local' | false> {
])
.build()
await dialog.show()
try {
await dialog.show()
} catch (error) {
logger.debug('Open locally dialog closed', { error })
}
return result
}

4
dist/files-init.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long