浏览代码

Update PublicTimelineService, add video media scopes

Daniel Supernault 5 年之前
父节点
当前提交
7b00eba398
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Services/PublicTimelineService.php

+ 1 - 1
app/Services/PublicTimelineService.php

@@ -52,7 +52,7 @@ class PublicTimelineService {
 			$ids = Status::whereNull('uri')
 				->whereNull('in_reply_to_id')
 				->whereNull('reblog_of_id')
-				->whereIn('type', ['photo', 'photo:album'])
+				->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
 				->whereScope('public')
 				->latest()
 				->limit($limit)