We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When trying to start screenshare in appbuilder, we run the setPresenter query, and after setNormal:
` const SET_PRESENTER = gql mutation setPresenter($uid: Int!, $passphrase: String!) { setPresenter(uid: $uid, passphrase: $passphrase) } ;
const SET_NORMAL = gql mutation setNormal($passphrase: String!) { setNormal(passphrase: $passphrase) } ;`
setPresenterQuery({ variables: { uid: screenShareUid, passphrase: phrase, }, }) .then((res) => { if (res.data.setPresenter === 'success') { console.log("button presenter ok " + res.data); } }) .catch((err) => { console.log("button presenter can't add "); console.log(err); });
We catch the error as:
To Reproduce Steps to reproduce the behavior:
Expected behavior Screenshare works and is visible
Screenshots If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
Additional context We are not seeing something from the server in /var/log/syslog about this error. Where should we be looking?
In the original code, we set the "phrase" from the URL params of our route. How should we be setting the "phrase" now?
<backtrace>
The text was updated successfully, but these errors were encountered:
samyak-jain
No branches or pull requests
Describe the bug
When trying to start screenshare in appbuilder, we run the setPresenter query, and after setNormal:
`
const SET_PRESENTER = gql
mutation setPresenter($uid: Int!, $passphrase: String!) {
setPresenter(uid: $uid, passphrase: $passphrase)
}
;
const SET_NORMAL = gql
mutation setNormal($passphrase: String!) {
setNormal(passphrase: $passphrase)
}
;`
setPresenterQuery({ variables: { uid: screenShareUid, passphrase: phrase, }, }) .then((res) => { if (res.data.setPresenter === 'success') { console.log("button presenter ok " + res.data); } }) .catch((err) => { console.log("button presenter can't add "); console.log(err); });
We catch the error as:
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Screenshare works and is visible
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
Additional context
We are not seeing something from the server in /var/log/syslog about this error. Where should we be looking?
In the original code, we set the "phrase" from the URL params of our route.
How should we be setting the "phrase" now?
Backtrace
The text was updated successfully, but these errors were encountered: