mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 09:34:26 +02:00
Fix missing storage class
This commit is contained in:
parent
36190d1e79
commit
86320317f4
2 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue