mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fix Misleading Error Message on unreadable Media due to Permission (#1873)
* fix(taglib): Fix misleading error message on unreadable media - #1576 Signed-off-by: reo <reo_999@proton.me> * fix(taglib): Add unit test and exclude scan for only unreadable file - #1576 Signed-off-by: reo <reo_999@proton.me> * fix(taglib): Add unit test and exclude scan for only unreadable file - #1576 Signed-off-by: reo <reo_999@proton.me> * fix(taglib): Add unit test and exclude scan for only unreadable file - #1576 Signed-off-by: reo <reo_999@proton.me> * fix(taglib): Add unit test and exclude scan for only unreadable file - #1576 Signed-off-by: reo <reo_999@proton.me> * fix(taglib): Add unit test and exclude scan for only unreadable file - #1576 Signed-off-by: reo <reo_999@proton.me> * Fix test and simplify code a bit We don't need to expose the type of error: `taglib.Parse()` always return nil * Fix comment Signed-off-by: reo <reo_999@proton.me> Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
51b67d18d3
commit
4489c34757
6 changed files with 58 additions and 18 deletions
|
@ -36,7 +36,7 @@ var _ = Describe("walk_dir_tree", func() {
|
|||
Expect(collected[baseDir]).To(MatchFields(IgnoreExtras, Fields{
|
||||
"HasImages": BeTrue(),
|
||||
"HasPlaylist": BeFalse(),
|
||||
"AudioFilesCount": BeNumerically("==", 4),
|
||||
"AudioFilesCount": BeNumerically("==", 5),
|
||||
}))
|
||||
Expect(collected[filepath.Join(baseDir, "playlists")].HasPlaylist).To(BeTrue())
|
||||
Expect(collected).To(HaveKey(filepath.Join(baseDir, "symlink2dir")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue