Use getParent instead of manual reply_to lookup

This commit is contained in:
Mikael Nordfeldth 2013-10-28 17:24:13 +01:00
parent fcba540a14
commit a5d8707658
1 changed files with 6 additions and 6 deletions

View File

@ -1552,12 +1552,12 @@ class Notice extends Managed_DataObject
$ctx = new ActivityContext();
if (!empty($this->reply_to)) {
$reply = Notice::getKV('id', $this->reply_to);
if (!empty($reply)) {
$ctx->replyToID = $reply->uri;
$ctx->replyToUrl = $reply->bestUrl();
}
try {
$reply = $this->getParent();
$ctx->replyToID = $reply->uri;
$ctx->replyToUrl = $reply->bestUrl();
} catch (Exception $e) {
// This is not a reply to something
}
$ctx->location = $this->getLocation();