From: Friendika Date: Sun, 13 Feb 2011 06:29:32 +0000 (-0800) Subject: receiving comment notifications for conversations we aren't "involved" in X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2d542e0f982598b792da6fbdf9cd7b29c2a04c83;p=friendica.git receiving comment notifications for conversations we aren't "involved" in --- diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index dffbb59740..755d674c13 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -391,8 +391,9 @@ function dfrn_notify_post(&$a) { intval($importer['importer_uid']) ); if(count($myconv)) { + $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname']; foreach($myconv as $conv) { - if(! link_compare($conv['author-link'],$importer['url'])) + if(! link_compare($conv['author-link'],$importer_url)) continue; require_once('bbcode.php'); $from = stripslashes($datarray['author-name']);