From: Mike Macgirvin Date: Sun, 18 Jul 2010 09:54:47 +0000 (-0700) Subject: fix reference to if(item->remote-id), which now gets set more often X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5ed87a44e61fe4318fd1cb34ca1f3feed67a5f72;p=friendica.git fix reference to if(item->remote-id), which now gets set more often --- diff --git a/include/notifier.php b/include/notifier.php index 6d6146a2a0..68ff8a5c3c 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -65,7 +65,7 @@ if($argc < 3) $parent = $items[0]; - if(strlen($parent['remote-id'])) { + if((strlen($parent['remote-id'])) && ($parent['type'] == 'remote')) { $followup = true; $conversant_str = dbesc($parent['contact-id']); }