Fix crash with default resolution best on mobile data

This commit is contained in:
Ritiek Malhotra 2018-10-31 21:42:00 +05:30
parent fba0a8036b
commit 642b499e70
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,8 @@ public final class ListHelper {
: context.getString(R.string.best_resolution_key);
String maxResolution = getResolutionLimit(context);
if (maxResolution != null && compareVideoStreamResolution(maxResolution, resolution) < 1){
if (maxResolution != null && (resolution.equals(context.getString(R.string.best_resolution_key))
|| compareVideoStreamResolution(maxResolution, resolution) < 1)) {
resolution = maxResolution;
}
return resolution;