File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -533,9 +533,7 @@ impl Accessor for Id3v2Tag {
533
533
fn set_comment ( & mut self , value : String ) {
534
534
let mut value = Some ( value) ;
535
535
self . frames . retain_mut ( |frame| {
536
- let Some ( CommentFrame { content, .. } ) =
537
- filter_comment_frame_by_description_mut ( frame, & EMPTY_CONTENT_DESCRIPTOR )
538
- else {
536
+ let Some ( CommentFrame { content, .. } ) = filter_comment_frame_by_description_mut ( frame, & EMPTY_CONTENT_DESCRIPTOR ) else {
539
537
return true ;
540
538
} ;
541
539
if let Some ( value) = value. take ( ) {
@@ -761,9 +759,7 @@ impl SplitTag for Id3v2Tag {
761
759
) => {
762
760
if owner == MUSICBRAINZ_UFID_OWNER {
763
761
let mut identifier = Cursor :: new ( identifier) ;
764
- let Ok ( recording_id) =
765
- decode_text ( & mut identifier, TextEncoding :: Latin1 , false )
766
- else {
762
+ let Ok ( recording_id) = decode_text ( & mut identifier, TextEncoding :: Latin1 , false ) else {
767
763
return true ; // Keep frame
768
764
} ;
769
765
tag. items . push ( TagItem :: new (
You can’t perform that action at this time.
0 commit comments