Force scalar context on $ogg->comment
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 1 Aug 2015 21:57:39 +0000 (00:57 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 1 Aug 2015 21:57:39 +0000 (00:57 +0300)
lib/App/MusicExpo.pm

index 18ee13c4d248698de27f861c8074342d51138029..9422a07eb9e12921be309d7fe7b8ae1fcfde6f6a 100644 (file)
@@ -75,13 +75,13 @@ sub vorbisinfo{
 
        freeze +{
                format => 'Vorbis',
-               title => $ogg->comment('TITLE'),
-               artist => $ogg->comment('artist'),
-               year => $ogg->comment('DATE'),
-               album => $ogg->comment('ALBUM'),
-               tracknumber => $ogg->comment('TRACKNUMBER'),
-               tracktotal => $ogg->comment('TRACKTOTAL'),
-               genre => $ogg->comment('GENRE'),
+               title => scalar $ogg->comment('TITLE'),
+               artist => scalar $ogg->comment('artist'),
+               year => scalar $ogg->comment('DATE'),
+               album => scalar $ogg->comment('ALBUM'),
+               tracknumber => scalar $ogg->comment('TRACKNUMBER'),
+               tracktotal => scalar $ogg->comment('TRACKTOTAL'),
+               genre => scalar $ogg->comment('GENRE'),
                file => scalar fileparse $file,
        }
 }
This page took 0.014154 seconds and 4 git commands to generate.