From ab515273ca18625da73246adda2a21ceaea50ea8 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Sun, 15 Apr 2018 19:18:02 +0200 Subject: [PATCH] Re-enable display of estimated bandwidth, since it is available in the api with the latest liblinphone master merges. --- src/android/org/linphone/call/CallActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/org/linphone/call/CallActivity.java b/src/android/org/linphone/call/CallActivity.java index 54a52d6d1..41bbe4883 100644 --- a/src/android/org/linphone/call/CallActivity.java +++ b/src/android/org/linphone/call/CallActivity.java @@ -1634,7 +1634,7 @@ public class CallActivity extends LinphoneGenericActivity implements OnClickList String.valueOf((int) stats.getUploadBandwidth()) + " kbits/s"); if (isVideo) { formatText(edl, getString(R.string.call_stats_estimated_download), - String.valueOf(0/*(int) stats.getEstimatedDownloadBandwidth()*/) + " kbits/s"); + String.valueOf(stats.getEstimatedDownloadBandwidth()) + " kbits/s"); } formatText(ice, getString(R.string.call_stats_ice), stats.getIceState().toString());