Skip to content

Instantly share code, notes, and snippets.

@rebelchris
Created January 23, 2021 15:05
Show Gist options
  • Save rebelchris/b017d4558da39dd0aa03148f67731d03 to your computer and use it in GitHub Desktop.
Save rebelchris/b017d4558da39dd0aa03148f67731d03 to your computer and use it in GitHub Desktop.
Room full check
rtc.client.on("user-published", async (user, mediaType) => {
if (rtc.client._users.length > 1) {
roomFull();
}
// Rest of the code
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment