From 9054bd8941530c3f14fb518eb9c7c5a27459200a Mon Sep 17 00:00:00 2001 From: Igor Kulman Date: Sun, 21 Sep 2025 22:23:02 +0200 Subject: [PATCH] Use consistent auth format with auth field instead of username/password --- src/components/services/Transmission.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/services/Transmission.vue b/src/components/services/Transmission.vue index 64f47a6..25058f7 100644 --- a/src/components/services/Transmission.vue +++ b/src/components/services/Transmission.vue @@ -100,8 +100,8 @@ export default { }; // Add HTTP Basic Auth if credentials are provided - if (this.item.username && this.item.password) { - const credentials = btoa(`${this.item.username}:${this.item.password}`); + if (this.item.auth) { + const credentials = btoa(this.item.auth); options.headers["Authorization"] = `Basic ${credentials}`; }