]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/DFRN.php
Preparation for quoted reshares on AP
[friendica.git] / src / Protocol / DFRN.php
index 44cd21c391f1f38adf98cb9e93a023ee54a232c6..5fceab3264d7ab9cc70056c7db2486db4c991124 100644 (file)
@@ -1456,7 +1456,7 @@ class DFRN
                $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
 
                if (empty($dest_url)) {
-                       Logger::info('Empty destination', ['contact' => $contact]);
+                       Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
                        return -24;
                }
 
@@ -1693,13 +1693,12 @@ class DFRN
                                'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
                                'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
                                'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
-                               'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
+                               'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
 
                        DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
 
                        // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
                        unset($fields['hidden']);
-                       $fields['unsearchable'] = $hide;
                        $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
                        DBA::update('contact', $fields, $condition, true);