Norbits: fix login error handling

This commit is contained in:
kaso17 2017-04-21 20:34:03 +02:00
parent a85e00f236
commit a9c5477003
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ namespace Jackett.Indexers
var response = await webclient.GetString(request);
// Test if we are logged in
await ConfigureIfOK(response.Cookies, response.Content != null && response.Cookies.Contains("uid="), () =>
await ConfigureIfOK(response.Cookies, response.Cookies != null && response.Cookies.Contains("uid="), () =>
{
// Default error message
var message = "Error during attempt !";