Fix:Empty podcasts marked as missing & removing episodes when deleted in folder #1671

This commit is contained in:
advplyr 2023-04-12 17:20:11 -05:00
parent 589c4f73d2
commit 24ef105732
2 changed files with 17 additions and 6 deletions

View file

@ -166,7 +166,7 @@ class Podcast {
}
removeFileWithInode(inode) {
this.episodes = this.episodes.filter(ep => ep.ino !== inode)
this.episodes = this.episodes.filter(ep => ep.audioFile.ino !== inode)
}
findFileWithInode(inode) {