From 5210a68cc6c7ebcafce61a73faba5275f86d5683 Mon Sep 17 00:00:00 2001 From: Ben Phelps Date: Tue, 27 Sep 2022 10:51:00 +0300 Subject: [PATCH] remove debug --- src/widgets/qbittorrent/proxy.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widgets/qbittorrent/proxy.js b/src/widgets/qbittorrent/proxy.js index 6bfa06623..da4b9a7f3 100644 --- a/src/widgets/qbittorrent/proxy.js +++ b/src/widgets/qbittorrent/proxy.js @@ -4,7 +4,6 @@ import { httpProxy } from "utils/proxy/http"; import getServiceWidget from "utils/config/service-helpers"; async function login(widget, params) { - console.log("Doing login"); const loginUrl = new URL(`${widget.url}/api/v2/auth/login`).toString(); const loginBody = `username=${encodeURI(widget.username)}&password=${encodeURI(widget.password)}`;