1
0
Эх сурвалжийг харах

Update MediaTagService, fix ProfileService to soft fail on missing or deleted accounts

Daniel Supernault 2 жил өмнө
parent
commit
df444851b5

+ 1 - 1
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';