mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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:
commit
302505d88e
3 changed files with 9 additions and 4 deletions
|
|
@ -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
4
dist/files-init.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-init.js.map
vendored
2
dist/files-init.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue