From 9967c9892d68b2c8f4c7085367891d2e74db8ddb Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 28 Jan 2013 01:22:00 +0100 Subject: [PATCH] only change parents when parents are changed. --- include/ostatus_conversation.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index 2851fdb1f9..4bf80aa042 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -17,7 +17,7 @@ function complete_conversation($itemid, $conversation_url) { require_once('include/html2bbcode.php'); require_once('include/items.php'); - logger('complete_conversation: completing conversation url '.$conversation_url.' for id '.$itemid); + //logger('complete_conversation: completing conversation url '.$conversation_url.' for id '.$itemid); $messages = q("SELECT `uid`, `parent` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid)); if (!$messages) @@ -43,7 +43,7 @@ function complete_conversation($itemid, $conversation_url) { $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as"; - logger('complete_conversation: fetching conversation url '.$conversation_url.' for '.$itemid); + logger('complete_conversation: fetching conversation url '.$conv.' for '.$itemid); $conv_as = fetch_url($conv); if ($conv_as) { @@ -61,10 +61,10 @@ function complete_conversation($itemid, $conversation_url) { $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1", intval($message["uid"]), dbesc($first_id)); - if ($new_parents) + if ($new_parents AND ($itemid != $parent["id"])) { $parent = $new_parents[0]; - - logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid); + logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid); + } } if (isset($single_conv->context->inReplyTo->id))