Commit 893e534d by Phạm Văn Đoan

Cập nhật truy vấn lấy blacklist của các bài đã quá 6 tháng ở BXH

parent c9caff4b
......@@ -463,7 +463,9 @@ class TrackRepository extends BaseRepository
*/
public function getBacklistListen($src)
{
$query = CrawlerListenBlacklist::where('src', strtolower($src))->pluck('track_id');
$query = CrawlerListenBlacklist::where('src', strtolower($src))
->orWhere('src', 'all_6months')
->pluck('track_id');
return $query->toArray();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment