Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 74ab7c9

Browse files
committed
Fix encoding
1 parent b7569a9 commit 74ab7c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ScalarAuthClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class ScalarAuthClient {
8181
url += "?scalar_token=" + encodeURIComponent(this.scalarToken);
8282
url += "&room_id=" + encodeURIComponent(roomId);
8383
if (id) {
84-
url += '&integ_id=' + id;
84+
url += '&integ_id=' + encodeURIComponent(id);
8585
}
8686
if (screen) {
8787
url += '&screen=' + encodeURIComponent(screen);

0 commit comments

Comments
 (0)