From 00fd35ac50a7ff6f17d2bf78fcf6bf2ac0a40220 Mon Sep 17 00:00:00 2001 From: Rory& Date: Thu, 29 Feb 2024 09:13:59 +0000 Subject: Escape path separator when dumping --- MatrixMediaGate/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MatrixMediaGate/Program.cs b/MatrixMediaGate/Program.cs index e254413..bdf0d36 100644 --- a/MatrixMediaGate/Program.cs +++ b/MatrixMediaGate/Program.cs @@ -128,7 +128,7 @@ async Task ProxyDump(ProxyConfiguration cfg, HttpContext ctx, HttpRequestMessage if (ctx.Response.StatusCode >= 400 && cfg.DumpFailedRequests) { var dir = Path.Combine(cfg.DumpPath, "failed_requests"); Directory.CreateDirectory(dir); - var path = Path.Combine(cfg.DumpPath, "failed_requests", $"{resp.StatusCode}-{DateTimeOffset.UtcNow.ToUnixTimeSeconds()}-{ctx.Request.GetEncodedPathAndQuery()}.json"); + var path = Path.Combine(dir, $"{resp.StatusCode}-{DateTimeOffset.UtcNow.ToUnixTimeSeconds()}-{ctx.Request.GetEncodedPathAndQuery().Replace('/','_')}.json"); await using var file = File.Create(path); await JsonSerializer.SerializeAsync(file, new { Self = new { -- cgit 1.4.1