Exception handling for notice parent fetching
This commit is contained in:
parent
c4683bb3ba
commit
d69453f846
|
@ -698,11 +698,15 @@ class QvitterPlugin extends Plugin {
|
|||
$reply_notification_to = false;
|
||||
// check for reply to insert in notifications
|
||||
if($notice->reply_to) {
|
||||
$replyparent = $notice->getParent();
|
||||
$replyauthor = $replyparent->getProfile();
|
||||
if ($replyauthor instanceof Profile) {
|
||||
try {
|
||||
$replyauthor = $notice->getParent()->getProfile();
|
||||
$reply_notification_to = $replyauthor->id;
|
||||
$this->insertNotification($replyauthor->id, $notice->profile_id, 'reply', $notice->id);
|
||||
//} catch (NoParentNoticeException $e) { // TODO: catch this when everyone runs latest GNU social!
|
||||
// This is not a reply to something (has no parent)
|
||||
} catch (NoResultException $e) {
|
||||
// Parent notice or its author's profile not found! Complain louder?
|
||||
common_log(LOG_ERR, 'NoResultException: '.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user