mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-07-20 21:38:58 +00:00
Fix missing new artists
This commit is contained in:
parent
c250457c87
commit
b8ea16ed46
4 changed files with 35 additions and 18 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue