Fix encoding

pull/21833/head
Richard Lewis 2017-08-22 09:59:27 +01:00
parent b7569a9831
commit 74ab7c9bb3
1 changed files with 1 additions and 1 deletions

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);