Fix encoding
This commit is contained in:
@@ -81,7 +81,7 @@ class ScalarAuthClient {
|
|||||||
url += "?scalar_token=" + encodeURIComponent(this.scalarToken);
|
url += "?scalar_token=" + encodeURIComponent(this.scalarToken);
|
||||||
url += "&room_id=" + encodeURIComponent(roomId);
|
url += "&room_id=" + encodeURIComponent(roomId);
|
||||||
if (id) {
|
if (id) {
|
||||||
url += '&integ_id=' + id;
|
url += '&integ_id=' + encodeURIComponent(id);
|
||||||
}
|
}
|
||||||
if (screen) {
|
if (screen) {
|
||||||
url += '&screen=' + encodeURIComponent(screen);
|
url += '&screen=' + encodeURIComponent(screen);
|
||||||
|
|||||||
Reference in New Issue
Block a user