Merge pull request #795 from Cucumberrbob/fix/censor-downloadstation-password

fix: censor download station password when logging settings at startup
This commit is contained in:
Roger Far 2025-04-23 21:45:32 -06:00 committed by GitHub
commit 4f770d923a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,6 +31,7 @@ public class TorrentRunner(ILogger<TorrentRunner> logger, Torrents torrents, Dow
{
settingsCopy.Provider.ApiKey = "*****";
settingsCopy.DownloadClient.Aria2cSecret = "*****";
settingsCopy.DownloadClient.DownloadStationPassword = "*****";
Log(JsonSerializer.Serialize(settingsCopy));
}