Quick follow up, Version bump 0.1.84

This commit is contained in:
angelblue05 2015-05-16 03:00:46 -05:00
parent d7d27463ba
commit fba461083d
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.emby"
name="Emby"
version="0.1.83"
version="0.1.84"
provider-name="Emby.media">
<requires>
<import addon="xbmc.python" version="2.1.0"/>

View File

@ -117,6 +117,12 @@ class Service():
self.logMsg("Exception reporting progress: %s" % msg)
pass
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!
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')