when we receive intentional empty whats new info, do not try to show it

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2020-02-13 22:03:44 +01:00 committed by backportbot[bot]
parent fe5bc6810c
commit f4abee5209
2 changed files with 9 additions and 1 deletions

View File

@ -53,7 +53,11 @@ class ChangesCheck {
public function getChangesForVersion(string $version): array {
$version = $this->normalizeVersion($version);
$changesInfo = $this->mapper->getChanges($version);
return json_decode($changesInfo->getData(), true);
$changesData = json_decode($changesInfo->getData(), true);
if(empty($changesData)) {
throw new DoesNotExistException();
}
return $changesData;
}
/**

View File

@ -279,6 +279,10 @@ class ChangesCheckTest extends TestCase {
],
]
],
[ # 4 - empty
'',
[]
],
];
}