1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Fix encoding

This commit is contained in:
Richard Lewis
2017-08-22 09:59:27 +01:00
parent b7569a9831
commit 74ab7c9bb3

View File

@@ -81,7 +81,7 @@ class ScalarAuthClient {
url += "?scalar_token=" + encodeURIComponent(this.scalarToken);
url += "&room_id=" + encodeURIComponent(roomId);
if (id) {
url += '&integ_id=' + id;
url += '&integ_id=' + encodeURIComponent(id);
}
if (screen) {
url += '&screen=' + encodeURIComponent(screen);