-
Notifications
You must be signed in to change notification settings - Fork 181
Pseudonomous identity and use the new jwt service endpoint (with delayed event delegation) #3638
New issue
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
Changes from 33 commits
909d980
5bc6ed5
3d8d0ae
6fe6dab
ff3d6bd
9bd51fd
ab7e348
50f3bf0
55d18f1
3ba2d13
7591e2b
0f5c5d8
df2bd22
5d5d75e
00fca6e
1580087
009c9e0
69a4189
556a87d
83d04ac
6480df4
d48042f
dd562bd
d814f60
75fca31
d5ad2e3
0eeed4e
5556d36
a5a4bb2
385f63e
1909aef
d4b06b0
7dbbd76
c7c6dc1
c2e3774
ed3d168
3943231
9a88e3d
32694fd
7387a00
1a9e4a1
735c17d
3412779
47e3896
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,6 @@ import { | |
| type AudioTrackProps, | ||
| } from "@livekit/components-react"; | ||
| import { logger } from "matrix-js-sdk/lib/logger"; | ||
| import { type ParticipantId } from "matrix-js-sdk/lib/matrixrtc"; | ||
|
|
||
| import { useEarpieceAudioConfig } from "../MediaDevicesContext"; | ||
| import { useReactiveState } from "../useReactiveState"; | ||
|
|
@@ -32,7 +31,7 @@ export interface MatrixAudioRendererProps { | |
| * This list needs to be composed based on the matrixRTC members so that we do not play audio from users | ||
| * that are not expected to be in the rtc session (local user is excluded). | ||
| */ | ||
| validIdentities: ParticipantId[]; | ||
| validIdentities: string[]; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the rtcBackendIdentity now I guess.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I dont think so. There are no string semantics to that identity... The names should already imply what it is? But If we have a PR that introduces such a thing I would not object. |
||
| /** | ||
| * If set to `true`, mutes all audio tracks rendered by the component. | ||
| * @remarks | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.