mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update MediaTagService, fix ProfileService to soft fail on missing or deleted accounts
This commit is contained in:
parent
6bc20a37ed
commit
df444851b5
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class MediaTagService
|
|||
|
||||
protected function idToUsername($id)
|
||||
{
|
||||
$profile = ProfileService::get($id);
|
||||
$profile = ProfileService::get($id, true);
|
||||
|
||||
if(!$profile) {
|
||||
return 'unavailable';
|
||||
|
|
Loading…
Reference in a new issue