mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update StatusPipeline
This commit is contained in:
parent
92939ed867
commit
1b794c8508
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ class CommentController extends Controller
|
|||
$reply = new Status();
|
||||
$reply->profile_id = $profile->id;
|
||||
$reply->caption = $comment;
|
||||
$reply->rendered = $comment;
|
||||
$reply->rendered = e($comment);
|
||||
$reply->in_reply_to_id = $status->id;
|
||||
$reply->in_reply_to_profile_id = $status->profile_id;
|
||||
$reply->save();
|
||||
|
|
|
@ -45,7 +45,7 @@ class StatusEntityLexer implements ShouldQueue
|
|||
public function parseHashtags()
|
||||
{
|
||||
$status = $this->status;
|
||||
$text = $status->caption;
|
||||
$text = e($status->caption);
|
||||
$tags = HashtagLexer::getHashtags($text);
|
||||
$rendered = $text;
|
||||
if(count($tags) > 0) {
|
||||
|
|
Loading…
Reference in a new issue