-
-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
Reproducer
Create an MP3 file with an ID3v2 tag, set the title tag to Foo / title, and save it as solidus_in_tag.mp3.
let file = Probe::open("solidus_in_tag.mp3")
.unwrap()
.read()
.unwrap();
assert_eq!(file.file_type(), FileType::MPEG);
let id3v2_tag = &file.tags()[0];
assert_eq!(id3v2_tag.title(), Some("Foo / title"));Summary
If an ID3v2 text tag contains a solidus (/) then whatever follows the character gets dropped; e.g. a title tag set to Foo / title is returned as Foo .
Expected behavior
The reproducer should pass; the title tag should return Foo / title.
Assets
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working