Fix AttributeError
This commit is contained in:
parent
affde8bbcb
commit
48152af27f
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ class Player(xbmc.Player):
|
||||||
def onPlayBackSeek(self, time, seekOffset):
|
def onPlayBackSeek(self, time, seekOffset):
|
||||||
# Make position when seeking a bit more accurate
|
# Make position when seeking a bit more accurate
|
||||||
currentFile = self.currentFile
|
currentFile = self.currentFile
|
||||||
self.info("PLAYBACK_SEEK: %s" % currentFile)
|
log.info("PLAYBACK_SEEK: %s" % currentFile)
|
||||||
|
|
||||||
if self.played_info.get(currentFile):
|
if self.played_info.get(currentFile):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue