#25 Add null check to fix crash whilst offline

This commit is contained in:
dddddd-mmmmmm 2020-01-23 16:21:24 +11:00
parent bf9e9ad1e6
commit e2280304e4
1 changed files with 2 additions and 0 deletions

View File

@ -298,6 +298,8 @@ public final class Util {
private static String getRestUrl(Context context, String method, SharedPreferences prefs, int instance, boolean allowAltAddress, @Nullable Map<String, String> parameters) {
String serverUrl = prefs.getString(Constants.PREFERENCES_KEY_SERVER_URL + instance, null);
if (serverUrl == null) return "OFFLINE";
HttpUrl.Builder builder;
builder = HttpUrl.parse(serverUrl).newBuilder();