diff options
author | Christoph (Sheogorath) Kern | 2018-06-26 22:47:21 +0200 |
---|---|---|
committer | GitHub | 2018-06-26 22:47:21 +0200 |
commit | 6218c703a98b177562c95042d3062503fbfc3dd9 (patch) | |
tree | 7b6fba6d28659718d68c87b829f7fc013de44822 /public/js | |
parent | c7745f6b27eeefe70235417b508f27ac833ee225 (diff) | |
parent | 1c92524c08d99a9233cc38b6055e243cc429ac35 (diff) |
Merge pull request #865 from SISheogorath/fix/unicodeURLs
Fix broken unicode urls
Diffstat (limited to '')
-rw-r--r-- | public/js/lib/config/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/lib/config/index.js b/public/js/lib/config/index.js index 4758ffe7..6133e2c8 100644 --- a/public/js/lib/config/index.js +++ b/public/js/lib/config/index.js @@ -7,7 +7,7 @@ export const debug = window.debug || false export const port = window.location.port export const serverurl = `${window.location.protocol}//${domain || window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}` window.serverurl = serverurl -export const noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1] +export const noteid = decodeURIComponent(urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1]) export const noteurl = `${serverurl}/${noteid}` export const version = window.version |