Conversation Message Excerpt is just "..."

When users on my forum Create a Conversation, it appears in their inbox with a Message Excerpt that just says, "..." as the Message Title.
If I go to /applications/conversations/views/messages/conversations.php and change line #13 from:
to
...it shows the whole message as the excerpt. Is there a reason why SliceString is just showing an ellipses instead of a 100 character excerpt? I assume this is a bug because it's not part of my theme.
If I go to /applications/conversations/views/messages/conversations.php and change line #13 from:
$Message = SliceString(Gdn_Format::Text($Conversation->LastMessage), 100);
to
$Message = Gdn_Format::Text($Conversation->LastMessage);
...it shows the whole message as the excerpt. Is there a reason why SliceString is just showing an ellipses instead of a 100 character excerpt? I assume this is a bug because it's not part of my theme.
Tagged:
0