]> git.mxchange.org Git - friendica.git/commitdiff
Faster credentials check
authorMichael <heluecht@pirati.ca>
Sat, 9 Dec 2017 12:23:15 +0000 (12:23 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 9 Dec 2017 12:23:15 +0000 (12:23 +0000)
src/Util/ExAuth.php

index c68cd41166668d5b428f29557da7d74492c876f8..973969678b8047d795c865dcc7e255fbe29ca903 100644 (file)
@@ -270,7 +270,9 @@ class ExAuth
         */
        private function checkCredentials($host, $user, $password, $ssl)
        {
-               $url = ($ssl ? 'https' : 'http') . '://' . $host . '/api/account/verify_credentials.json';
+               $this->writeLog(LOG_INFO, 'external credential check for ' . $user . '@' . $host);
+
+               $url = ($ssl ? 'https' : 'http') . '://' . $host . '/api/account/verify_credentials.json?skip_status=true';
 
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $url);