mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Quick follow up, Version bump 0.1.84
This commit is contained in:
parent
d7d27463ba
commit
fba461083d
2 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.emby"
|
<addon id="plugin.video.emby"
|
||||||
name="Emby"
|
name="Emby"
|
||||||
version="0.1.83"
|
version="0.1.84"
|
||||||
provider-name="Emby.media">
|
provider-name="Emby.media">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
|
|
|
@ -117,6 +117,12 @@ class Service():
|
||||||
self.logMsg("Exception reporting progress: %s" % msg)
|
self.logMsg("Exception reporting progress: %s" % msg)
|
||||||
pass
|
pass
|
||||||
lastProgressUpdate = datetime.today()
|
lastProgressUpdate = datetime.today()
|
||||||
|
elif WINDOW.getProperty('commandUpdate') == "true":
|
||||||
|
try:
|
||||||
|
WINDOW.clearProperty('commandUpdate')
|
||||||
|
player.reportPlayback()
|
||||||
|
except: pass
|
||||||
|
lastProgressUpdate = datetime.today()
|
||||||
# only try autoplay when there's 20 seconds or less remaining and only once!
|
# only try autoplay when there's 20 seconds or less remaining and only once!
|
||||||
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
|
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue