Merge branch 'develop' of https://github.com/sp-tarkov/server-csharp into develop

This commit is contained in:
Chomp
2025-03-09 17:12:21 +00:00
@@ -133,7 +133,16 @@ public class HttpServer(
}
_httpListeners.SingleOrDefault(l => l.CanHandle(sessionId, context.Request))?.Handle(sessionId, context.Request, context.Response);
try
{
_httpListeners.SingleOrDefault(l => l.CanHandle(sessionId, context.Request))?.Handle(sessionId, context.Request, context.Response);
}
catch (Exception ex)
{
_logger.Critical(ex.Message);
_logger.Critical(ex.StackTrace);
}
// This http request would be passed through the SPT Router and handled by an ICallback
}