Skip to content

Commit df44485

Browse files
committed
Update MediaTagService, fix ProfileService to soft fail on missing or deleted accounts
1 parent 6bc20a3 commit df44485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/MediaTagService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static function set($mediaId, $profileId)
5757

5858
protected function idToUsername($id)
5959
{
60-
$profile = ProfileService::get($id);
60+
$profile = ProfileService::get($id, true);
6161

6262
if(!$profile) {
6363
return 'unavailable';

0 commit comments

Comments
 (0)