]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/OnePoll.php
New function to fetch the database driver
[friendica.git] / src / Worker / OnePoll.php
index 7d69517319e22adcfec3da35885953d58d4aa604..93dff93ae5a8d1fe4aa1109349e48226809cdde8 100644 (file)
@@ -111,7 +111,7 @@ class OnePoll
                        DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
                        return;
                }               
-               
+
                // We don't poll AP contacts by now
                if ($protocol === Protocol::ACTIVITYPUB) {
                        Logger::log("Don't poll AP contact");
@@ -444,7 +444,7 @@ class OnePoll
                }
 
                $cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
-               $curlResult = DI::httpRequest()->get($contact['poll'], false, ['cookiejar' => $cookiejar]);
+               $curlResult = DI::httpRequest()->get($contact['poll'], ['cookiejar' => $cookiejar]);
                unlink($cookiejar);
 
                if ($curlResult->isTimeout()) {
@@ -708,6 +708,9 @@ class OnePoll
                        Logger::log("Mail: no mails for ".$mailconf['user']);
                }
 
+               self::updateContact($contact, ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
+               Contact::unmarkForArchival($contact);
+
                Logger::log("Mail: closing connection for ".$mailconf['user']);
                imap_close($mbox);
        }