From b1a6f66fd9676e9d7c9ceed5a10d07806790ae02 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 13 Feb 2020 22:03:44 +0100 Subject: when we receive intentional empty whats new info, do not try to show it Signed-off-by: Arthur Schiwon --- lib/private/Updater/ChangesCheck.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/private/Updater') diff --git a/lib/private/Updater/ChangesCheck.php b/lib/private/Updater/ChangesCheck.php index f1f44cc59c8..7346ceab6b1 100644 --- a/lib/private/Updater/ChangesCheck.php +++ b/lib/private/Updater/ChangesCheck.php @@ -55,7 +55,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; } /** -- cgit v1.2.3