You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use lofty::{Accessor,Tag,TagExt,TagType};fnmain(){letmut tag = Tag::new(TagType::APE);
tag.set_track(5);
tag.set_track_total(15);
tag.save_to_path("foo.mp3").unwrap();}
Summary
When using Tag, the track/disk numbers are not properly converted when saving to an APE tag. This is identical to #145, as it will be saved as two separate items: ........Track.5........Track.15.
This issue was fixed for ID3v2 in #149, which stores number pairs in the same format. The fix should be similar, if not identical.
Expected behavior
No response
Assets
No response
The text was updated successfully, but these errors were encountered:
Reproducer
I tried this code:
Summary
When using
Tag
, the track/disk numbers are not properly converted when saving to an APE tag. This is identical to #145, as it will be saved as two separate items:........Track.5........Track.15
.This issue was fixed for ID3v2 in #149, which stores number pairs in the same format. The fix should be similar, if not identical.
Expected behavior
No response
Assets
No response
The text was updated successfully, but these errors were encountered: