Skip to content

Commit

Permalink
fix(core): Fixed regression with stream collaborators query parameters (
Browse files Browse the repository at this point in the history
#3000)

fix(core): regression with stream invite query
  • Loading branch information
JR-Morgan authored Oct 23, 2023
1 parent 45a48d6 commit 804c26c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public async Task<Stream> StreamGetPendingCollaborators(
}
}
}",
Variables = new { streamId }
Variables = new { id = streamId }
};
var res = await GQLClient.SendMutationAsync<StreamData>(request, cancellationToken).ConfigureAwait(false); //WARN: Why do we do this?
return (await ExecuteGraphQLRequest<StreamData>(request, cancellationToken).ConfigureAwait(false)).stream;
Expand Down

0 comments on commit 804c26c

Please sign in to comment.