Bugzilla – Bug 2395
itunes playlists come up with hex nomenclatures for special characters
Last modified: 2008-09-15 14:37:04 UTC
steps to reproduce: - create a playlist with a & in the name (ex: Bugs & Daffy) - rescan/clear library - go to browse playlists and it shows up as "Bugs %26 Daffy" observed in trunk r4873
& comes up as & in the xml.. so, try changing line 877 of iTunes.pm to: my $name = Slim::Web::HTTP::unescape($cacheEntry->{'TITLE'}); instead of: my $name = $cacheEntry->{'TITLE'};
Fixed in change 4887