File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class Participant
30
30
public readonly WeakReference < Room > Room ;
31
31
public IReadOnlyDictionary < string , TrackPublication > Tracks => _tracks ;
32
32
33
- private Dictionary < string , RpcHandler > _rpcHandlers = new ( ) ;
33
+ protected Dictionary < string , RpcHandler > _rpcHandlers = new ( ) ;
34
34
35
35
protected Participant ( OwnedParticipant participant , Room room )
36
36
{
Original file line number Diff line number Diff line change @@ -216,8 +216,8 @@ internal void OnEventReceived(RoomEvent e)
216
216
var participant = GetParticipant ( e . ParticipantMetadataChanged . ParticipantIdentity ) ;
217
217
if ( participant != null )
218
218
{
219
- ParticipantMetadataChanged ? . Invoke ( participant ) ;
220
219
participant . SetMeta ( e . ParticipantMetadataChanged . Metadata ) ;
220
+ ParticipantMetadataChanged ? . Invoke ( participant ) ;
221
221
}
222
222
else Utils . Debug ( "Unable to find participant: " + e . ParticipantMetadataChanged . ParticipantIdentity + " in Meta data Change Event" ) ;
223
223
}
You can’t perform that action at this time.
0 commit comments