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
I worked around this with this code in Slim::Formats::MP3 -
my $s = Audio::Scan->scan( $file );
if ( exists $s->{tags}->{GRP1} ) {
$s->{tags}->{GRP1} =~ s/\x0//g; # scanner is returning leading null in GRP1 tag, which messes things up.
}
The text was updated successfully, but these errors were encountered:
I worked around this with this code in Slim::Formats::MP3 -
The text was updated successfully, but these errors were encountered: