mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Result is already unpacked
This commit is contained in:
parent
16db25e876
commit
7b2051f883
1 changed files with 16 additions and 18 deletions
|
@ -264,11 +264,9 @@ class API(object):
|
||||||
False = Not installed, scheduled for uninstalling or disabled
|
False = Not installed, scheduled for uninstalling or disabled
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
res = self.get_plugins() # type: requests.Response
|
|
||||||
if res.ok:
|
|
||||||
kodi_sync_queue = [
|
kodi_sync_queue = [
|
||||||
x
|
x
|
||||||
for x in res.json()
|
for x in self.get_plugins()
|
||||||
if x.get("Id") == "771e19d653854cafb35c28a0e865cf63"
|
if x.get("Id") == "771e19d653854cafb35c28a0e865cf63"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue