diff --git a/app/src/main/java/org/xbmc/kore/host/HostConnection.java b/app/src/main/java/org/xbmc/kore/host/HostConnection.java index 25fb407ad..06d756abf 100644 --- a/app/src/main/java/org/xbmc/kore/host/HostConnection.java +++ b/app/src/main/java/org/xbmc/kore/host/HostConnection.java @@ -510,8 +510,8 @@ private void executeThroughOkHttp(final ApiMethod method, final ApiCallba LogUtils.LOGD(TAG, "Illegal argument exception on sending HTTP request: " + e); // This happens because the host URL isn't valid if (callback != null) { - String desc = "Illegal argument exception on sending HTTP request: " + e.getMessage() + - ". Please check the media center URL."; + String desc = "Illegal argument exception on sending HTTP request.\n" + + "Please check the media center address on the configuration screen."; postOrRunNow(handler, () -> callback.onError(ApiException.HTTP_HOST_URL_INVALID, desc)); } }