Merge pull request #4671 from nextcloud/fix/wopi-callback-url-browsersetting

fix: load `wopi_callback_url` from initial state into config service
This commit is contained in:
Elizabeth Danzberger 2025-04-15 12:27:36 -04:00 committed by GitHub
commit 3cdeaae885
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,10 @@ class ConfigService {
private values: {[name: string]: any}
constructor() {
this.values = loadState('richdocuments', 'document', {})
this.values = {
wopi_callback_url: loadState('richdocuments', 'wopi_callback_url', ''),
...loadState('richdocuments', 'document', {}),
}
}
update(key: string, value: any) {