Fix music fine file with inode

This commit is contained in:
advplyr 2022-12-24 11:12:39 -06:00
parent 7bc5902ea8
commit 0717ae39db
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ class Music {
}
findFileWithInode(inode) {
return this.audioFile && this.audioFile.ino === inode
return (this.audioFile && this.audioFile.ino === inode) ? this.audioFile : null
}
setData(mediaData) {