Use true as default value

This commit is contained in:
Javi Rueda 2020-08-26 17:26:57 +02:00
parent c4d111ca72
commit e7aa87cc9f

View file

@ -299,7 +299,7 @@ public class FileViewFragment extends BaseFragment implements
}
} else if (playbackState == Player.STATE_BUFFERING) {
Context ctx = getContext();
boolean sendBufferingEvents = false;
boolean sendBufferingEvents = true;
if (ctx != null) {
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(ctx);