From df444851b5564b15b2667b973c626b90469389a6 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 8 May 2023 22:47:19 -0600 Subject: [PATCH] Update MediaTagService, fix ProfileService to soft fail on missing or deleted accounts --- app/Services/MediaTagService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/MediaTagService.php b/app/Services/MediaTagService.php index d2457b39d..ef436ec0a 100644 --- a/app/Services/MediaTagService.php +++ b/app/Services/MediaTagService.php @@ -57,7 +57,7 @@ class MediaTagService protected function idToUsername($id) { - $profile = ProfileService::get($id); + $profile = ProfileService::get($id, true); if(!$profile) { return 'unavailable';