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

github.com/nextcloud/nextcloud-filelink.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Viguier <guillaume@viguierjust.com>2017-04-05 17:54:35 +0300
committerGuillaume Viguier <guillaume@viguierjust.com>2017-04-05 17:54:35 +0300
commit39b644f29b5878bb8321ce31ebe2fafefd2e1d3e (patch)
tree2f0d03d6bd2250c1615de639f6bf64f23313a207 /src
parent7d16971855a4d5b56a1b37f49f9c26f217ad12f2 (diff)
Fixed issue with @ in username
Diffstat (limited to 'src')
-rw-r--r--src/components/nsNextcloud.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/nsNextcloud.js b/src/components/nsNextcloud.js
index 02e16d7..15a7df3 100644
--- a/src/components/nsNextcloud.js
+++ b/src/components/nsNextcloud.js
@@ -48,7 +48,8 @@ function wwwFormUrlEncode (aStr) {
.replace(/'/g, '%27')
.replace(/\(/g, '%28')
.replace(/\)/g, '%29')
- .replace(/\*/g, '%2A');
+ .replace(/\*/g, '%2A')
+ .replace(/\@/g, '%40');
}
/**