Skip to content

Commit

Permalink
fix(screenshare): fixed screenshare failure validating token
Browse files Browse the repository at this point in the history
  • Loading branch information
mwfarb committed Feb 16, 2024
1 parent 6aff22c commit 60d712e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion screenshare/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!window.params) window.close();

const options = window.params.connectOptions;
const { appID } = window.params;
const { token } = window.params;
const token = window.params.token.mqtt_token;
const confOptions = {
openBridgeChannel: true,
};
Expand Down

0 comments on commit 60d712e

Please sign in to comment.