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:
authorJulius Härtl <jus@bitgrid.net>2022-08-05 15:57:06 +0300
committerGitHub <noreply@github.com>2022-08-05 15:57:06 +0300
commit6e489571b84ac06653be81c87b047d4af453a08d (patch)
treef62324b4cfa4009f41663b7696ff59da051d9de2
parentef36c2c16b533bbc501912f22e197770d5f4f6d6 (diff)
parent64c9d010ccfafcaaadfcacbce31d9acfaaa861a6 (diff)
Merge pull request #2359 from nextcloud/bugfix/base64
[stable24] No need to json/base64 decode the title
-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]));
}
}