]> git.mxchange.org Git - friendica.git/commitdiff
Fixing some notice again
authorMichael <heluecht@pirati.ca>
Sun, 13 Jan 2019 09:44:04 +0000 (09:44 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 13 Jan 2019 09:44:04 +0000 (09:44 +0000)
src/Worker/OnePoll.php

index b3b3f1c65c1585550c79d0bbe51884a3bf9b92f1..4b4790c279bfc45fc41e7e63bc4cb1729f4a4f3b 100644 (file)
@@ -492,7 +492,7 @@ class OnePoll
 
                                                        // If it seems to be a reply but a header couldn't be found take the last message with matching subject
                                                        if (empty($datarray['parent-uri']) && $reply) {
-                                                               $condition = ['title' => $datarray['title'], 'uid' => importer_uid, 'network' => Protocol::MAIL];
+                                                               $condition = ['title' => $datarray['title'], 'uid' => $importer_uid, 'network' => Protocol::MAIL];
                                                                $params = ['order' => ['created' => true]];
                                                                $parent = Item::selectFirst(['parent-uri'], $condition, $params);
                                                                if (DBA::isResult($parent)) {