Merge pull request #19472 from nextcloud/backport/19465/stable16

[stable16] when we receive intentional empty whats new info, do not try to show it
This commit is contained in:
Joas Schilling 2020-02-17 12:40:58 +01:00 committed by GitHub
commit a76d24e297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
'',
[]
],
];
}