]> git.mxchange.org Git - friendica.git/commitdiff
notification issue after last checkin
authorFriendika <info@friendika.com>
Wed, 5 Oct 2011 04:43:21 +0000 (21:43 -0700)
committerFriendika <info@friendika.com>
Wed, 5 Oct 2011 04:43:21 +0000 (21:43 -0700)
mod/dfrn_notify.php

index 23bdd7388edc0a22f1bfbaff32de663ebaff603c..c7ad61ecc9df2b6becdc9028df6b944e767fc721 100644 (file)
@@ -450,7 +450,15 @@ function dfrn_notify_post(&$a) {
                }
 
                if($is_reply) {
-                       if($feed->get_item_quantity() == 1) {
+
+                       // was the top-level post for this reply written by somebody on this site? Specifically, the recipient? 
+
+                       $r = q("select `id` from `item` where `uri` = '%s' and AND `uid` = %d LIMIT 1",
+                               dbesc($parent_uri),
+                               intval($importer['importer_uid'])
+                       )
+                       if($r && count($r)) {   
+
                                logger('dfrn_notify: received remote comment');
                                $is_like = false;
                                // remote reply to our post. Import and then notify everybody else.