]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_contact.php
Store the protocol of the received message
[friendica.git] / mod / update_contact.php
index 5fb62e6a077de2ce919273c423f75a3c004698c1..9681e7c17979f977a32904ec267a660e17e5df83 100644 (file)
 use Friendica\App;
 use Friendica\Core\System;
 use Friendica\DI;
+use Friendica\Model\Item;
 use Friendica\Module\Contact;
 
 function update_contact_content(App $a)
 {
-       if ($_GET["force"] == 1) {
-               $text = Contact::content([], true);
+       if (!empty($a->argv[1]) && (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update'))) {
+               if (!empty($_GET['item'])) {
+                       $item = Item::selectFirst(['parent'], ['id' => $_GET['item']]);
+                       $parentid = $item['parent'] ?? 0;
+               } else {
+                       $parentid = 0;
+               }
+               $text = Contact::getConversationsHMTL($a, $a->argv[1], true, $parentid);
        } else {
                $text = '';
        }
-
        System::htmlUpdateExit($text);
 }