Add podcast episode auto download new episodes cron

This commit is contained in:
advplyr 2022-03-26 19:58:59 -05:00
parent d5e96a3422
commit 0dd219f303
10 changed files with 155 additions and 15 deletions

View file

@ -183,6 +183,10 @@ class Db {
}
}
getLibraryItem(id) {
return this.libraryItems.find(li => li.id === id)
}
async updateLibraryItem(libraryItem) {
return this.updateLibraryItems([libraryItem])
}