Skip to content

Commit 39b644f

Browse files
committed
Fixed issue with @ in username
1 parent 7d16971 commit 39b644f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/nsNextcloud.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ function wwwFormUrlEncode (aStr) {
4848
.replace(/'/g, '%27')
4949
.replace(/\(/g, '%28')
5050
.replace(/\)/g, '%29')
51-
.replace(/\*/g, '%2A');
51+
.replace(/\*/g, '%2A')
52+
.replace(/\@/g, '%40');
5253
}
5354

5455
/**

0 commit comments

Comments
 (0)