Fixed production signature memory segment conversion bug in AtdfService

This commit is contained in:
Nav
2025-01-09 21:57:49 +00:00
parent 2a51f8af75
commit f18b14885e

View File

@@ -636,10 +636,7 @@ class AtdfService
return MemorySegmentType::ALIASED; return MemorySegmentType::ALIASED;
} }
if ( if ($atdfTypeName === 'production_signatures' || $atdfSegmentName === 'prod_signatures') {
$atdfTypeName === 'production_signatures'
|| ($atdfTypeName === 'other' && $atdfSegmentName === 'prod_signatures')
) {
return MemorySegmentType::PRODUCTION_SIGNATURES; return MemorySegmentType::PRODUCTION_SIGNATURES;
} }