فهرست منبع

Add self posts to personal timeline

Closes #85
Daniel Supernault 7 سال پیش
والد
کامیت
e88777ed57
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  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)