File tree Expand file tree Collapse file tree 3 files changed +19
-19
lines changed
Expand file tree Collapse file tree 3 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 1414 "author" : " TensorWorks Pty Ltd" ,
1515 "license" : " MIT" ,
1616 "dependencies" : {
17- "@epicgames-ps/lib-pixelstreamingfrontend-ue5.4" : " ^0.0.3 " ,
18- "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.4" : " ^0.0.3 "
17+ "@epicgames-ps/lib-pixelstreamingfrontend-ue5.4" : " ^0.0.4 " ,
18+ "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.4" : " ^0.0.4 "
1919 },
2020 "devDependencies" : {
2121 "css-loader" : " ^6.7.3" ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export enum MessageSendTypes {
1919export class MessageStats extends MessageSend {
2020 inboundVideoStats : InboundVideoStats ;
2121 inboundAudioStats : InboundAudioStats ;
22- candidatePair : CandidatePairStats
22+ candidatePair : CandidatePairStats ;
2323 dataChannelStats : DataChannelStats ;
2424 localCandidates : Array < CandidateStat > ;
2525 remoteCandidates : Array < CandidateStat > ;
@@ -33,7 +33,7 @@ export class MessageStats extends MessageSend {
3333 this . type = MessageSendTypes . STATS
3434 this . inboundVideoStats = aggregatedStats . inboundVideoStats ;
3535 this . inboundAudioStats = aggregatedStats . inboundAudioStats ;
36- this . candidatePair = aggregatedStats . candidatePair ;
36+ this . candidatePair = aggregatedStats . getActiveCandidatePair ( ) ;
3737 this . dataChannelStats = aggregatedStats . DataChannelStats
3838 this . localCandidates = aggregatedStats . localCandidates ;
3939 this . remoteCandidates = aggregatedStats . remoteCandidates ;
You can’t perform that action at this time.
0 commit comments