Fix mismatched bitrate vars

This commit is contained in:
Hampton Maxwell 2018-12-31 22:08:18 -08:00
parent fb5f87bc9b
commit 9a809e22d8

View File

@ -178,7 +178,7 @@ class VideoEventEmitter {
void bandwidthReport(double bitRateEstimate) {
WritableMap event = Arguments.createMap();
event.putDouble(EVENT_PROP_BITRATE, bitRate);
event.putDouble(EVENT_PROP_BITRATE, bitRateEstimate);
receiveEvent(EVENT_BANDWIDTH, event);
}