add apiversion setting

cloned from
https://github.com/lrusak/plugin.audio.subsonic/commit/761fc593c4a94027b
6483b98886a995b88bb03af
This commit is contained in:
gordielachance
2016-10-01 00:31:01 +02:00
parent fe158c33fb
commit 6b4807bbf5
3 changed files with 5 additions and 3 deletions

View File

@ -30,6 +30,7 @@ class Plugin(object):
self.url = addon.getSetting("subsonic_url")
self.username = addon.getSetting("username")
self.password = addon.getSetting("password")
self.apiversion = addon.getSetting("apiversion")
self.albums_per_page = int(addon.getSetting("albums_per_page"))
self.tracks_per_page = int(addon.getSetting("tracks_per_page"))
@ -39,7 +40,7 @@ class Plugin(object):
# Create connection
self.connection = libsonic_extra.SubsonicClient(
self.url, self.username, self.password)
self.url, self.username, self.password, self.apiversion)
def build_url(self, query):
"""