mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix CDRWin composer parsing
This commit is contained in:
@@ -573,8 +573,8 @@ namespace DiscImageChef.ImagePlugins
|
||||
else if(MatchComposer.Success)
|
||||
{
|
||||
DicConsole.DebugWriteLine("CDRWin plugin", "Found COMPOSER at line {0}", line);
|
||||
if(intrack) currenttrack.arranger = MatchComposer.Groups[1].Value;
|
||||
else discimage.arranger = MatchComposer.Groups[1].Value;
|
||||
if(intrack) currenttrack.composer = MatchComposer.Groups[1].Value;
|
||||
else discimage.composer = MatchComposer.Groups[1].Value;
|
||||
}
|
||||
else if(MatchDiskID.Success)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user