mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Adjust delete logic for entrypoint
This commit is contained in:
parent
9ab82905cb
commit
db4cb448b0
1 changed files with 18 additions and 18 deletions
|
@ -118,10 +118,13 @@ def resetDeviceId():
|
|||
line1=language(33033))
|
||||
xbmc.executebuiltin('RestartApp')
|
||||
|
||||
##### Delete Item, like the context menu action
|
||||
##### Delete Item
|
||||
def deleteItem():
|
||||
|
||||
# Serves as a keymap action
|
||||
if xbmc.getInfoLabel('ListItem.Property(embyid)'): # If we already have the embyid
|
||||
embyid = xbmc.getInfoLabel('ListItem.Property(embyid)')
|
||||
else:
|
||||
dbid = xbmc.getInfoLabel('ListItem.DBID')
|
||||
itemtype = xbmc.getInfoLabel('ListItem.DBTYPE')
|
||||
|
||||
|
@ -139,9 +142,6 @@ def deleteItem():
|
|||
utils.logMsg("EMBY delete", "Unknown type, unable to proceed.", 1)
|
||||
return
|
||||
|
||||
if xbmc.getInfoLabel('ListItem.Property(embyid)'): # If we already have the embyid
|
||||
embyid = xbmc.getInfoLabel('ListItem.Property(embyid)')
|
||||
else:
|
||||
embyconn = utils.kodiSQL('emby')
|
||||
embycursor = embyconn.cursor()
|
||||
emby_db = embydb.Embydb_Functions(embycursor)
|
||||
|
|
Loading…
Reference in a new issue