Explorar o código

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

Daniel Supernault %!s(int64=2) %!d(string=hai) anos
pai
achega
df444851b5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/Services/MediaTagService.php

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