We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0857ce commit 7f03544Copy full SHA for 7f03544
common/src/main/java/com/genexus/internet/GXHttpClient.java
@@ -532,7 +532,7 @@ public void setIsURL(boolean isURL) {
532
protected String setPathUrl(String url) {
533
if (!getIsURL()) { // Si no es URL absoluta
534
if (!getBaseURL().isEmpty()) {
535
- if (!getBaseURL().startsWith("/"))
+ if (!getBaseURL().startsWith("/") && !getBaseURL().startsWith("http"))
536
setBaseURL("/" + getBaseURL());
537
if (url.isEmpty())
538
url = getBaseURL();
0 commit comments