Skip to content

Commit

Permalink
Merge pull request #23 from SebastianAppDev/graphql-join
Browse files Browse the repository at this point in the history
Graphql user join meeting fix
  • Loading branch information
tibroc authored Jul 12, 2024
2 parents 67aedcf + d23a140 commit 265678e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appliance-application/packages/main/src/bbb-graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ export class BBBGraphql{
await this.initApolloClient();

const JOIN_MUTATION = gql`
mutation UserJoin($authToken: String!, $clientType: String!) {
userJoin(
mutation UserJoinMeeting($authToken: String!, $clientType: String!) {
userJoinMeeting(
authToken: $authToken,
clientType: $clientType,
)
Expand All @@ -114,8 +114,8 @@ export class BBBGraphql{
},
});

if(!result.data.userJoin){
console.log('userJoin failed');
if(!result.data.userJoinMeeting){
console.log('userJoinMeeting failed');
return false;
}

Expand Down

0 comments on commit 265678e

Please sign in to comment.