Many bug and UI fixes, and improved client side caching of images (#248)

This commit is contained in:
Michael Green
2024-01-03 23:24:26 +11:00
committed by GitHub
parent 47c2fc8069
commit 49f36a2b99
62 changed files with 511 additions and 417 deletions

View File

@@ -39,8 +39,16 @@ namespace gaseous_server.Classes.Metadata
}
else
{
Task<Platform> RetVal = _GetPlatform(SearchUsing.id, Id, forceRefresh);
return RetVal.Result;
try
{
Task<Platform> RetVal = _GetPlatform(SearchUsing.id, Id, forceRefresh);
return RetVal.Result;
}
catch(Exception ex)
{
Logging.Log(Logging.LogType.Warning, "Metadata", "An error occurred fetching Platform Id " + Id, ex);
return null;
}
}
}