Merge pull request #67 from dddddd-mmmmmm/issue-25

#25 Add null check to fix crash whilst offline
This commit is contained in:
Andrew Rabert 2020-01-26 18:43:30 -05:00 committed by GitHub
commit e7ea8d4dfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -301,6 +301,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();