From 38e97a904a35933589731eeff44be8ed2a0aeae9 Mon Sep 17 00:00:00 2001 From: Slendy Date: Tue, 2 May 2023 21:05:41 -0500 Subject: [PATCH] Make FriendsController return text/xml --- .../Controllers/FriendsController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectLighthouse.Servers.GameServer/Controllers/FriendsController.cs b/ProjectLighthouse.Servers.GameServer/Controllers/FriendsController.cs index 7a0f7154..83e198d8 100644 --- a/ProjectLighthouse.Servers.GameServer/Controllers/FriendsController.cs +++ b/ProjectLighthouse.Servers.GameServer/Controllers/FriendsController.cs @@ -16,6 +16,7 @@ namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Controllers; [ApiController] [Authorize] [Route("LITTLEBIGPLANETPS3_XML/")] +[Produces("text/xml")] public class FriendsController : ControllerBase { private readonly DatabaseContext database;