From 03459d01295a96d7fefcdabf178e81db36b080b3 Mon Sep 17 00:00:00 2001 From: Cucumberrbob <128094686+Cucumberrbob@users.noreply.github.com> Date: Sun, 20 Apr 2025 12:14:56 +0100 Subject: [PATCH] fix: censor download station password when logging settings at startup --- server/RdtClient.Service/Services/TorrentRunner.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/RdtClient.Service/Services/TorrentRunner.cs b/server/RdtClient.Service/Services/TorrentRunner.cs index 555e49f..29e7d18 100644 --- a/server/RdtClient.Service/Services/TorrentRunner.cs +++ b/server/RdtClient.Service/Services/TorrentRunner.cs @@ -31,6 +31,7 @@ public class TorrentRunner(ILogger logger, Torrents torrents, Dow { settingsCopy.Provider.ApiKey = "*****"; settingsCopy.DownloadClient.Aria2cSecret = "*****"; + settingsCopy.DownloadClient.DownloadStationPassword = "*****"; Log(JsonSerializer.Serialize(settingsCopy)); }