From: Mikael Nordfeldth Date: Fri, 1 Apr 2016 21:10:34 +0000 (+0200) Subject: More debugging in Salmon since we get situations which can't find inReplyToID X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=922b65d2318bfedcac3fd076dae996187055470b;p=quix0rs-gnu-social.git More debugging in Salmon since we get situations which can't find inReplyToID --- diff --git a/plugins/OStatus/actions/usersalmon.php b/plugins/OStatus/actions/usersalmon.php index ea5262aa3b..fd7b12317d 100644 --- a/plugins/OStatus/actions/usersalmon.php +++ b/plugins/OStatus/actions/usersalmon.php @@ -43,7 +43,9 @@ class UsersalmonAction extends SalmonAction if (!empty($this->activity->context->replyToID)) { try { $notice = Notice::getByUri($this->activity->context->replyToID); + common_debug('Referenced Notice object found with URI: '.$notice->getUri()); } catch (NoResultException $e) { + common_debug('Referenced Notice object NOT found with URI: '.$this->activity->context->replyToID); $notice = false; } }