Don't pull comment fields that auto-populate (fixes #517)

This commit is contained in:
Matt Nadareski
2023-07-17 10:28:37 -04:00
parent 8eb86fde90
commit 30fec3c3d0
2 changed files with 20 additions and 1 deletions

View File

@@ -2051,12 +2051,20 @@ namespace MPF.Library
// Skip certain site codes because of data issues
switch (siteCode)
{
// Multiple
case SiteCode.InternalSerialName:
case SiteCode.Multisession:
case SiteCode.VolumeLabel:
foundTag = true;
break;
// Audio CD
case SiteCode.RingNonZeroDataStart:
case SiteCode.UniversalHash:
foundTag = true;
continue;
// Xbox and X360
// Microsoft Xbox and Xbox 360
case SiteCode.DMIHash:
case SiteCode.PFIHash:
case SiteCode.SSHash:
@@ -2065,6 +2073,16 @@ namespace MPF.Library
case SiteCode.XeMID:
foundTag = true;
continue;
// Microsoft Xbox One and Series X/S
case SiteCode.Filename:
foundTag = true;
break;
// Nintendo Gamecube
case SiteCode.InternalName:
foundTag = true;
break;
}
// Cache the current site code