Remove skip deletion after playback

I think it must be a mistake on my part. Checking history, it looks like
a copy paste during the refactor.
This commit is contained in:
angelblue05 2016-02-12 16:49:21 -06:00
parent d3f2969e80
commit 26836fb536
3 changed files with 10 additions and 15 deletions

View file

@ -482,13 +482,12 @@ class Player(xbmc.Player):
offerDelete = False
if percentComplete >= markPlayedAt and offerDelete:
if utils.settings('skipPlayback') != "true":
resp = xbmcgui.Dialog().yesno(
heading="Confirm delete",
line1="Delete file on Emby Server?")
if not resp:
self.logMsg("User skipped deletion.", 1)
continue
resp = xbmcgui.Dialog().yesno(
heading="Confirm delete",
line1="Delete file on Emby Server?")
if not resp:
self.logMsg("User skipped deletion.", 1)
continue
url = "{server}/emby/Items/%s?format=json" % itemid
self.logMsg("Deleting request: %s" % itemid)