From 3c875dcf6e67d4e196f9c0eb7b19e8b515b5afe4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 1 Jan 2013 23:57:56 +0100 Subject: [PATCH] statusnet: Answers were mirrored as well - now there's a check against that. --- statusnet/statusnet.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/statusnet/statusnet.php b/statusnet/statusnet.php index 1a42307c..d5097c13 100755 --- a/statusnet/statusnet.php +++ b/statusnet/statusnet.php @@ -790,6 +790,9 @@ function statusnet_fetchtimeline($a, $uid) { if (is_object($post->retweeted_status)) continue; + if ($post->in_reply_to_status_id != "") + continue; + if (!strpos($post->source, $a->get_hostname())) { $_SESSION["authenticated"] = true; $_SESSION["uid"] = $uid;