Do not report playback metrics if the network is not in use
This commit is contained in:
@@ -154,6 +154,14 @@ class PlaybackMetrics {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Network state 2 means we're actively using the network.
|
||||||
|
// We only care about reporting metrics with network activity stats
|
||||||
|
// if it's actively being used, so don't report otherwise.
|
||||||
|
const networkState = this.player.networkState();
|
||||||
|
if (networkState !== 2) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const bandwidth = tech.vhs.systemBandwidth;
|
const bandwidth = tech.vhs.systemBandwidth;
|
||||||
this.trackBandwidth(bandwidth);
|
this.trackBandwidth(bandwidth);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user