mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 10:16:11 +00:00
Fix patch
ugh sleep!!
This commit is contained in:
parent
3ea2ecc50d
commit
5839075424
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ class Service(xbmc.Monitor):
|
|||
This pulls a dict that contains all the information for the build needed.
|
||||
'''
|
||||
LOG.info("--[ check updates/%s ]", objects.version)
|
||||
kodi = "DEV" if settings('devMode') else xbmc.getInfoLabel('System.BuildVersion')
|
||||
kodi = "DEV" if settings('devMode.bool') else xbmc.getInfoLabel('System.BuildVersion')
|
||||
|
||||
try:
|
||||
versions = requests.get('http://kodi.emby.media/Public%20testing/Dependencies/databases.json').json()
|
||||
|
|
Loading…
Reference in a new issue