mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update ap helpers, fix unset media name bug
This commit is contained in:
parent
c62ac0259d
commit
083f506baf
1 changed files with 1 additions and 1 deletions
|
@ -674,7 +674,7 @@ class Helpers {
|
|||
}
|
||||
$blurhash = isset($media['blurhash']) ? $media['blurhash'] : null;
|
||||
$license = isset($media['license']) ? License::nameToId($media['license']) : null;
|
||||
$caption = $media['name'] ? Purify::clean($media['name']) : null;
|
||||
$caption = isset($media['name']) ? Purify::clean($media['name']) : null;
|
||||
|
||||
$media = new Media();
|
||||
$media->blurhash = $blurhash;
|
||||
|
|
Loading…
Reference in a new issue