forked from Public/pics
UploadMedia: only set thumb asset id for tags that don't have one yet
This commit is contained in:
parent
c6dc6bbac4
commit
65cea8ed8a
@ -42,8 +42,11 @@ class UploadMedia extends HTMLController
|
||||
$new_ids[] = $asset->getId();
|
||||
$asset->linkTags([$tag->id_tag]);
|
||||
|
||||
$tag->id_asset_thumb = $asset->getId();
|
||||
$tag->save();
|
||||
if (empty($tag->id_asset_thumb))
|
||||
{
|
||||
$tag->id_asset_thumb = $asset->getId();
|
||||
$tag->save();
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($_REQUEST['format']) && $_REQUEST['format'] === 'json')
|
||||
|
Loading…
Reference in New Issue
Block a user