remove empty creds restriction (#10)

* removed empty checks on qbit and deluge credentials

* updated configuration readme
This commit is contained in:
Marius Nechifor
2024-11-19 23:54:16 +02:00
committed by GitHub
parent cbc5c571b3
commit 54cabd98b4
4 changed files with 11 additions and 21 deletions
-10
View File
@@ -25,15 +25,5 @@ public sealed class QBitConfig : IConfig
{
throw new ArgumentNullException(nameof(Url));
}
if (string.IsNullOrEmpty(Username))
{
throw new ArgumentNullException(nameof(Username));
}
if (string.IsNullOrEmpty(Password))
{
throw new ArgumentNullException(nameof(Password));
}
}
}