]> git.mxchange.org Git - friendica.git/commitdiff
Feeds are never public so the posts can never be duplicated.
authorMichael Vogel <icarus@dabo.de>
Mon, 22 Dec 2014 06:32:04 +0000 (07:32 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 22 Dec 2014 06:32:04 +0000 (07:32 +0100)
include/threads.php

index f80212fad49d972ffce710cfc76ac40d7dfca920..28bf87f4dae97a7a1ee650a7d022145ff235b876 100644 (file)
@@ -32,7 +32,7 @@ function add_thread($itemid, $onlyshadow = false) {
                return;
 
        // is it an entry from a connector? Only add an entry for natively connected networks
-       if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_FEED, "")))
+       if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
                return;
 
        // Only do these checks if the post isn't a wall post
@@ -210,9 +210,9 @@ function update_shadow_copy() {
 
        logger("start");
 
-       $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s', '%s')
+       $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s')
                                        AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private` ORDER BY `created`",
-                               NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_FEED, NETWORK_OSTATUS), true);
+                               NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS), true);
 
        logger("fetched messages: ".count($messages));
        while ($message = $db->qfetch())