]> git.mxchange.org Git - friendica.git/commitdiff
Send a salmon notification when its a ostatus thread or you reply to an ostatus message
authorMichael Vogel <icarus@dabo.de>
Sat, 13 Jun 2015 07:12:28 +0000 (09:12 +0200)
committerMichael Vogel <icarus@dabo.de>
Sat, 13 Jun 2015 07:12:28 +0000 (09:12 +0200)
include/notifier.php

index ce04a139bb8b39dd8b97f11870457a10a948b389..19f0134729f70ec88c386a7250c73ba036cd3fd5 100644 (file)
@@ -328,7 +328,8 @@ function notifier_run(&$argv, &$argc){
                                // We notify Friendica users in the thread when it is an OStatus thread.
                                // Hopefully this transfers the messages to the other Friendica servers. (Untested)
                                if ($parent["network"] == NETWORK_OSTATUS) {
-                                       $r = q("SELECT `author-link` FROM `item` WHERE `parent` = %d", intval($target_item["parent"]));
+                                       $r = q("SELECT `author-link` FROM `item` WHERE `parent` = %d AND `author-link` != '%s'",
+                                               intval($target_item["parent"]), dbesc($owner['url']));
                                        foreach($r as $parent_item) {
                                                $probed_contact = probe_url($parent_item["author-link"]);
                                                if (($probed_contact["notify"] != "") AND ($probed_contact["network"] == NETWORK_DFRN)) {