Fixed a few bugs and switched to .NET framework 4.7

This commit is contained in:
Grigory Chudov
2018-10-21 14:12:05 -04:00
parent dd1358f8dc
commit 9754a9a328
82 changed files with 842 additions and 557 deletions

View File

@@ -150,14 +150,14 @@ namespace CUETools.Processor
{
foreach (string tag in xiph)
foreach (string value in xiph.GetField(tag))
if (!IsKnownXiphTag(tag))
if (!IsKnownXiphTag(tag) && value != null)
tags.Add(tag, value);
}
else if (ape != null)
{
foreach (string tag in ape)
foreach (string value in ape.GetItem(tag).ToStringArray())
if (!IsKnownApeTag(tag))
if (!IsKnownApeTag(tag) && value != null)
tags.Add(tag, value);
}
else if (asf != null)