Fix missing new artists

This commit is contained in:
angelblue05 2018-10-02 18:33:25 -05:00
commit b8ea16ed46
4 changed files with 35 additions and 18 deletions

View file

@ -135,6 +135,11 @@ class EmbyDatabase():
return self.cursor.fetchall()
def get_views_by_media(self, *args):
self.cursor.execute(QU.get_views_by_media, args)
return self.cursor.fetchall()
def get_items_by_media(self, *args):
self.cursor.execute(QU.get_items_by_media, args)