The logchecker currently deletes all sections that have the "CUETools" byline if it's for a log that doesn't have a checksum:
|
foreach ($this->Logs as $Key => $Value) { |
|
if (preg_match("/---- CUETools DB Plugin V.+/i", $Value)) { |
|
unset($this->Logs[$Key]); |
|
} |
|
} |
We should not be doing this, but rather leave it as part of the analyzed log.