mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-05 03:18:45 +00:00
Serialization refactor hotfixes
Fixes user heart count Fixes searches not working Fixes text/plain content not outputting
This commit is contained in:
parent
329ab66043
commit
1e8ef8c679
4 changed files with 6 additions and 4 deletions
|
@ -8,6 +8,7 @@ using LBPUnion.ProjectLighthouse.Servers.GameServer.Middlewares;
|
|||
using LBPUnion.ProjectLighthouse.Types.Logging;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.HttpOverrides;
|
||||
using Microsoft.AspNetCore.Mvc.Formatters;
|
||||
|
||||
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Startup;
|
||||
|
||||
|
@ -44,6 +45,7 @@ public class GameServerStartup
|
|||
{
|
||||
options.OutputFormatters.Add(new LbpOutputFormatter());
|
||||
options.OutputFormatters.Add(new JsonOutputFormatter());
|
||||
options.OutputFormatters.Add(new StringOutputFormatter());
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue