// If the thread shouldn't be completed then store the item and go away
if ((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) {
- $arr["app"] .= " (OStatus-NoCompletion)";
+ //$arr["app"] .= " (OStatus-NoCompletion)";
$item_stored = item_store($item, true);
return($item_stored);
}
if (!sizeof($items)) {
if (count($item) > 0) {
- $arr["app"] .= " (OStatus-NoConvFetched)";
+ //$arr["app"] .= " (OStatus-NoConvFetched)";
$item_stored = item_store($item, true);
if ($item_stored) {
else
$arr["app"] = "OStatus";
- $arr["app"] .= " (Conversation)";
+ //$arr["app"] .= " (Conversation)";
$arr["object"] = json_encode($single_conv);
$arr["verb"] = $parent["verb"];
if (isset($item[$field]))
$arr[$field] = $item[$field];
- $arr["app"] .= " (OStatus)";
+ //$arr["app"] .= " (OStatus)";
}
$newitem = item_store($arr);
}
if (($item_stored < 0) AND (count($item) > 0)) {
- $arr["app"] .= " (OStatus-NoConvFound)";
+ //$arr["app"] .= " (OStatus-NoConvFound)";
$item_stored = item_store($item, true);
if ($item_stored) {
logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);