]> git.mxchange.org Git - friendica.git/commitdiff
Update added
authorMichael <heluecht@pirati.ca>
Wed, 23 Nov 2022 21:47:47 +0000 (21:47 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 23 Nov 2022 21:47:47 +0000 (21:47 +0000)
src/Model/Item.php
static/dbstructure.config.php
update.php

index 911e4216f0a70ea7c7d13a81ab6b1e4e6fab2fe9..0390730fd8c178d9744976924b0c210d1a127afe 100644 (file)
@@ -2312,7 +2312,7 @@ class Item
 
                $datarray2 = $datarray;
                Logger::info('remote-self start', ['contact' => $contact['url'], 'remote_self'=> $contact['remote_self'], 'item' => $datarray]);
-               if (in_array($contact['remote_self'], [Contact::MIRROR_OWN_POST, Contact::MIRROR_FORWARDED])) {
+               if ($contact['remote_self'] == Contact::MIRROR_OWN_POST) {
                        $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
                                        ['uid' => $contact['uid'], 'self' => true]);
                        if (DBA::isResult($self)) {
index 53289addfb81764b1424f49966b24d17c7f60d55..942f2237d538e279b1bbb8050e205d73450a6781 100644 (file)
@@ -55,7 +55,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1490);
+       define('DB_UPDATE_VERSION', 1491);
 }
 
 return [
index c7e2428af9d43f9b5a8b1e6b9465c68defd9d35d..2ee753ead2125e384175de24d9ffa096d9dadecd 100644 (file)
@@ -1121,3 +1121,9 @@ function update_1481()
        DBA::e("UPDATE `post-collection` INNER JOIN `post` ON `post`.`uri-id` = `post-collection`.`uri-id` SET `post-collection`.`author-id` = `post`.`author-id` WHERE `post-collection`.`author-id` IS null");
        return Update::SUCCESS;
 }
+
+function update_1491()
+{
+       DBA::update('contact', ['remote_self' => Contact::MIRROR_OWN_POST], ['remote_self' => Contact::MIRROR_FORWARDED]);
+       return Update::SUCCESS;
+}
\ No newline at end of file