Ver Fonte

Add self posts to personal timeline

Closes #85
Daniel Supernault há 7 anos atrás
pai
commit
e88777ed57
1 ficheiros alterados com 1 adições e 0 exclusões
  1. 1 0
      app/Http/Controllers/TimelineController.php

+ 1 - 0
app/Http/Controllers/TimelineController.php

@@ -17,6 +17,7 @@ class TimelineController extends Controller
     {
       // TODO: Use redis for timelines
       $following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
+      $following->push(Auth::user()->profile->id);
       $timeline = Status::whereHas('media')
                   ->whereNull('in_reply_to_id')
                   ->whereIn('profile_id', $following)