We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d9294 commit 450d195Copy full SHA for 450d195
pkg/conference/data_channel_message_processor.go
@@ -13,6 +13,8 @@ func (c *Conference) processTrackSubscriptionDCMessage(
13
) {
14
participant.logger.Info("Received track subscription request over DC")
15
16
+ // TODO: Handle unsubscribe
17
+
18
// Find tracks based on what we were asked for.
19
tracks := c.getTracks(msg.Subscribe)
20
@@ -44,8 +46,6 @@ func (c *Conference) processTrackSubscriptionDCMessage(
44
46
return
45
47
}
48
-
- // TODO: Handle unsubscribe
49
50
51
func (c *Conference) processNegotiateDCMessage(participant *Participant, msg event.FocusCallNegotiateEventContent) {
0 commit comments