Remove space.
This commit is contained in:
parent
1bd5779b8a
commit
92dbd19bf7
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ class MyRadioAPI:
|
|||
async def get_playlist_aux_items(self, library_id: str):
|
||||
# Sometimes they have "aux-<ID>", we only need the index.
|
||||
if library_id.index("-") > -1:
|
||||
library_id = library_id[library_id.index("-") + 1 :]
|
||||
library_id = library_id[library_id.index("-") + 1:]
|
||||
|
||||
url = "/nipswebPlaylist/{}/items".format(library_id)
|
||||
request = await self.async_api_call(url)
|
||||
|
|
Loading…
Reference in a new issue