From: epg <> Date: Thu, 28 Oct 2004 02:11:26 +0000 (+0000) Subject: (get_tags): Just match /TITLE/ instead of /TITLE=/, to support the X-Git-Url: https://diplodocus.org/git/flac-archive/commitdiff_plain/69ddf331c8ba5144b54940b6c1bf02fc71ed9cad?hp=deb4590f8e57726aca4fb936cc1caa9575050387 (get_tags): Just match /TITLE/ instead of /TITLE=/, to support the TITLE[1] .. TITLE[n] tag style. --- diff --git a/flac2mp3 b/flac2mp3 index abd8984..3bdfa71 100755 --- a/flac2mp3 +++ b/flac2mp3 @@ -85,7 +85,7 @@ sub get_tags { $album = $value; } elsif (/^DATE=/) { $date = $value; - } elsif (/TITLE=/) { + } elsif (/TITLE/) { push(@titles, $value); } }