Skip to content

Commit

Permalink
fix(video-chat): wrong state update for remote tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
iltumio authored and RetroPronghorn committed Dec 22, 2021
1 parent b669d36 commit b066f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/webrtc/mutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const mutations = {
}
},
) {
state.remoteTracks = { ...state.localTracks, ...tracks }
state.remoteTracks = { ...state.remoteTracks, ...tracks }
},
}

Expand Down

0 comments on commit b066f76

Please sign in to comment.