Skip to content

Commit

Permalink
Update MediaTagService, fix ProfileService to soft fail on missing or…
Browse files Browse the repository at this point in the history
… deleted accounts
  • Loading branch information
dansup committed May 9, 2023
1 parent 6bc20a3 commit df44485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/MediaTagService.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static function set($mediaId, $profileId)

protected function idToUsername($id)
{
$profile = ProfileService::get($id);
$profile = ProfileService::get($id, true);

if(!$profile) {
return 'unavailable';
Expand Down

0 comments on commit df44485

Please sign in to comment.