Skip to content

Commit

Permalink
Fix mismatched bitrate vars
Browse files Browse the repository at this point in the history
  • Loading branch information
cobarx committed Jan 1, 2019
1 parent fb5f87b commit 9a809e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void progressChanged(double currentPosition, double bufferedDuration, double see

void bandwidthReport(double bitRateEstimate) {
WritableMap event = Arguments.createMap();
event.putDouble(EVENT_PROP_BITRATE, bitRate);
event.putDouble(EVENT_PROP_BITRATE, bitRateEstimate);
receiveEvent(EVENT_BANDWIDTH, event);
}

Expand Down

0 comments on commit 9a809e2

Please sign in to comment.