Fix icons in server game select
This commit is contained in:
parent
aec4342188
commit
53276542e8
1 changed files with 6 additions and 1 deletions
|
@ -226,6 +226,11 @@
|
|||
|
||||
private string GetIcon(Game game)
|
||||
{
|
||||
return $"/api/Games/{game?.Id}/Icon.png";
|
||||
var media = game?.Media?.FirstOrDefault(m => m.Type == Data.Enums.MediaType.Icon);
|
||||
|
||||
if (media != null)
|
||||
return $"/api/Media/{media.Id}/Download?fileId={media.FileId}";
|
||||
else
|
||||
return "/favicon.ico";
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue