mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
core: remove string extensions in favor of explicit conversion (#7839)
This commit is contained in:
@@ -183,7 +183,7 @@ namespace Jackett.Common.Indexers
|
||||
|
||||
searchUrl += "?" + queryCollection.GetQueryString();
|
||||
|
||||
if (passkey.IsNullOrEmptyOrWhitespace())
|
||||
if (string.IsNullOrWhiteSpace(passkey))
|
||||
await ApplyConfiguration(null);
|
||||
|
||||
var result = await SendAPIRequest(searchUrl, null);
|
||||
|
Reference in New Issue
Block a user