Merge pull request #59658 from nextcloud/backport/59647/stable32

[stable32] fix(files): remove error message when closing the "Open locally" dialog
This commit is contained in:
dsyzov 2026-04-16 07:47:01 +00:00 committed by GitHub
commit 302505d88e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View file

@ -110,6 +110,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