diff --git a/src/applications/ponder/storage/PonderQuestionTransaction.php b/src/applications/ponder/storage/PonderQuestionTransaction.php index 6c1da4be8d..3218a01f8a 100644 --- a/src/applications/ponder/storage/PonderQuestionTransaction.php +++ b/src/applications/ponder/storage/PonderQuestionTransaction.php @@ -258,13 +258,16 @@ final class PonderQuestionTransaction return phutil_escape_html_newlines( phutil_utf8_shorten($question->getContent(), 128)); } + break; case self::TYPE_ANSWERS: $answer = $this->getNewAnswerObject($story); if ($answer) { return phutil_escape_html_newlines( phutil_utf8_shorten($answer->getContent(), 128)); } + break; } + return parent::getBodyForFeed($story); }