--- misc/xbmc/plugin.video.todic/default.py 2016/11/24 18:55:35 3150 +++ misc/xbmc/plugin.video.todic/default.py 2016/11/24 19:55:00 3151 @@ -3,7 +3,7 @@ ''' Todic plugin for XBMC - Version 0.0.21a + Version 0.0.21b ''' import sys @@ -157,9 +157,11 @@ def reportPlaytime(self, subaction): - url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition ) - open_url_safe(url) - print "[Todic] reportPlaytime:" + url + if (self.playingPosition > 60): + url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition ) + print "[Todic] reportPlaytime:" + url + open_url_safe(url) +