Skip to content

Commit 018e796

Browse files
committed
fix: Fix name not set from store when creating the model
Signed-off-by: Daniel Calviño Sánchez <[email protected]>
1 parent d5562af commit 018e796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/webrtc/models/LocalCallParticipantModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ LocalCallParticipantModel.prototype = {
5454
this._webRtc = webRtc
5555

5656
this.set('peerId', this._webRtc.connection.getSessionId())
57-
this.set('guestName', null)
57+
this.set('guestName', actorStore.displayName)
5858

5959
this._webRtc.on('forcedMute', this._handleForcedMuteBound)
6060
this._unwatchDisplayNameChange = watch(

0 commit comments

Comments
 (0)