Prep parentid change

Few other things
This commit is contained in:
angelblue05 2018-09-12 19:43:51 -05:00
commit 2deb31b294
8 changed files with 51 additions and 26 deletions

View file

@ -88,6 +88,11 @@ class EmbyDatabase():
except TypeError:
return
def get_media_by_parent_id(self, *args):
self.cursor.execute(QU.get_media_by_parent_id, args)
return self.cursor.fetchall()
def remove_item(self, *args):
self.cursor.execute(QU.delete_item, args)