Fix missing storage class

This commit is contained in:
nupplaPhil 2020-01-10 22:27:05 +01:00
parent 36190d1e79
commit 86320317f4
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
2 changed files with 6 additions and 6 deletions

View file

@ -171,7 +171,8 @@ class Photo
*/
public static function getImageForPhoto(array $photo)
{
if (empty($photo['backend-class'])) {
$backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
if ($backendClass === null) {
// legacy data storage in "data" column
$i = self::selectFirst(['data'], ['id' => $photo['id']]);
if ($i === false) {
@ -179,7 +180,6 @@ class Photo
}
$data = $i['data'];
} else {
$backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
$backendRef = $photo['backend-ref'] ?? '';
$data = $backendClass->get($backendRef);
}