瀏覽代碼

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)