From e3087d91ce1182960c692f2cec015c697b87c8f6 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Wed, 3 Jun 2026 21:16:18 +0300 Subject: [PATCH] fixed API key leaking --- .../Features/Arr/LazyLibrarianClient.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs b/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs index f0b1771a..b6e51459 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs @@ -45,7 +45,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient } catch { - _logger.LogError("queue list failed | {uri}", uri); + _logger.LogError("queue list failed | {url}", arrInstance.Url); throw; } @@ -53,7 +53,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient if (rows is null) { - throw new Exception($"unrecognized queue list response | {uri}"); + throw new Exception($"unrecognized queue list response | {arrInstance.Url}"); } List records = new(); @@ -134,7 +134,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient } catch { - _logger.LogError("queue delete failed | {uri} | {title}", uri, record.Title); + _logger.LogError("queue delete failed | {url} | {title}", arrInstance.Url, record.Title); throw; } }