diff options
Diffstat (limited to 'app/Models/FormAuth.php')
| -rw-r--r-- | app/Models/FormAuth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/FormAuth.php b/app/Models/FormAuth.php index 5bd6d97bc..54b468da9 100644 --- a/app/Models/FormAuth.php +++ b/app/Models/FormAuth.php @@ -32,7 +32,7 @@ class FreshRSS_FormAuth { } $credentials = @file_get_contents($token_file); - if ($credentials !== false && self::renewCookie($token)) { + if ($credentials !== false && self::renewCookie($token) != false) { return explode("\t", $credentials, 2); } return []; |
