Merge rPFd78c240a428a: T357: Gracefully handle obviously invalid year tags.

This commit is contained in:
Kelvin Zhang 2015-09-12 15:51:21 +01:00
parent 1952f01601
commit 2ac9fd6967

View file

@ -177,7 +177,10 @@ class ImportMLPMA extends Command
if ($taggedYear !== null && $modifiedDate->year === $taggedYear) {
$releasedAt = $modifiedDate;
} else {
if ($taggedYear !== null && (string)$taggedYear !== 4) {
$this->error('This track\'s tagged year makes no sense! Using the track\'s last modified date...');
$releasedAt = $modifiedDate;
} else {
if ($taggedYear !== null && $modifiedDate->year !== $taggedYear) {
$this->error('Release years don\'t match! Using the tagged year...');
@ -189,6 +192,7 @@ class ImportMLPMA extends Command
$releasedAt = $modifiedDate;
}
}
}
// This is later used by the classification/publishing script to determine the publication date.
$parsedTags['released_at'] = $releasedAt->toDateTimeString();