diff --git a/include/functions.php b/include/functions.php index a7d531b..f923c9a 100644 --- a/include/functions.php +++ b/include/functions.php @@ -850,7 +850,7 @@ function timeline($query) { $thread[] = $elem; } else { - if ($elem['in_reply_to_id'] == null) { + if ($elem['in_reply_to_id'] == null || $elem['in_reply_to_account_id'] == $query['uid']) { $thread[] = $elem; } else { $rel = api_get("accounts/relationships?id=" . $elem['in_reply_to_account_id']);