Commit 48536118 by Oliver Woodman

Remove additional "/" from merged URLs.

Issue: #81
parent 75943104
......@@ -167,6 +167,7 @@ public final class Util {
return Uri.parse(stringUri);
}
if (stringUri.startsWith("/")) {
stringUri = stringUri.substring(1);
return new Uri.Builder()
.scheme(baseUri.getScheme())
.authority(baseUri.getAuthority())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment