mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-26 02:36:10 +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.
|
This pulls a dict that contains all the information for the build needed.
|
||||||
'''
|
'''
|
||||||
LOG.info("--[ check updates/%s ]", objects.version)
|
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:
|
try:
|
||||||
versions = requests.get('http://kodi.emby.media/Public%20testing/Dependencies/databases.json').json()
|
versions = requests.get('http://kodi.emby.media/Public%20testing/Dependencies/databases.json').json()
|
||||||
|
|
Loading…
Reference in a new issue