Revised the gestures of the server adapter

This commit is contained in:
CappielloAntonio 2021-08-09 17:55:30 +02:00
parent 642c41f0c0
commit d88094b0cf
11 changed files with 195 additions and 21 deletions

View file

@ -84,7 +84,9 @@ public class Subsonic {
}
public String getUrl() {
return preferences.getServerUrl() + "/rest/";
String url = preferences.getServerUrl() + "/rest/";
return url.replace("//rest","/rest");
}
public Map<String, String> getParams() {