Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/services/config.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/config.tsx b/src/services/config.tsx
index 2363fe6d..74acfa29 100644
--- a/src/services/config.tsx
+++ b/src/services/config.tsx
@@ -35,7 +35,7 @@ class ConfigService {
loadFromGlobal(key: string) {
// @ts-ignore
this.values[key] = window['richdocuments_' + key]
- if (['path', 'title'].indexOf(key) !== -1) {
+ if (['path'].indexOf(key) !== -1) {
this.values[key] = JSON.parse(atob(this.values[key]));
}
}