Procházet zdrojové kódy

Update CommentController

Daniel Supernault před 6 roky
rodič
revize
f30ab46de5
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      app/Http/Controllers/CommentController.php

+ 3 - 1
app/Http/Controllers/CommentController.php

@@ -9,6 +9,7 @@ use Cache;
 use App\Comment;
 use App\Jobs\CommentPipeline\CommentPipeline;
 use App\Jobs\StatusPipeline\NewStatusPipeline;
+use App\Util\Lexer\Autolink;
 use App\Profile;
 use App\Status;
 use League\Fractal;
@@ -53,10 +54,11 @@ class CommentController extends Controller
 
         Cache::forget('transform:status:'.$status->url());
 
+        $autolink = Autolink::create()->autolink($comment);
         $reply = new Status();
         $reply->profile_id = $profile->id;
         $reply->caption = e($comment);
-        $reply->rendered = $comment;
+        $reply->rendered = $autolink;
         $reply->in_reply_to_id = $status->id;
         $reply->in_reply_to_profile_id = $status->profile_id;
         $reply->save();