diff options
author | Friendika <info@friendika.com> | 2011-10-04 21:43:21 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-04 21:43:21 -0700 |
commit | 159d06df828d3837a0bcb80add338efffa984cfb (patch) | |
tree | 78369d395a9c00c6738ed410caaa487909fb6ac6 /mod | |
parent | 7b648e6da85ece5b402dfce6d546f5711bc63bea (diff) | |
download | volse-hubzilla-159d06df828d3837a0bcb80add338efffa984cfb.tar.gz volse-hubzilla-159d06df828d3837a0bcb80add338efffa984cfb.tar.bz2 volse-hubzilla-159d06df828d3837a0bcb80add338efffa984cfb.zip |
notification issue after last checkin
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dfrn_notify.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 23bdd7388..c7ad61ecc 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -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. |