Enable autodownload over Ethernet

This commit is contained in:
Joe Stein 2019-05-18 12:05:53 +02:00
parent b89271329b
commit 49ef28877d
1 changed files with 5 additions and 0 deletions

View File

@ -68,6 +68,11 @@ public class NetworkUtils {
}
}
}
} else if (networkInfo.getType() == ConnectivityManager.TYPE_ETHERNET) {
Log.d(TAG, "Device is connected to Ethernet");
if (networkInfo.isConnected()) {
return true;
}
} else {
if (!UserPreferences.isEnableAutodownloadOnMobile()) {
Log.d(TAG, "Auto Download not enabled on Mobile");