diff --git a/app/Models/HybridTopRssPostKeywords.php b/app/Models/HybridTopRssPostKeywords.php index 7c0a9ed..2bb4814 100644 --- a/app/Models/HybridTopRssPostKeywords.php +++ b/app/Models/HybridTopRssPostKeywords.php @@ -31,7 +31,7 @@ public static function get($days = 1, $limit = 10) $queryResults = DB::table('rss_post_keywords') ->select('value', 'value_lowercased', DB::raw('COUNT(value_lowercased) as value_count')) ->where('created_at', '>=', now()->subDays($days)) - ->whereNotIn('value_lowercased', ['techcrunch', 'the verge', 'forbes', 'producthunt', '']) + ->whereNotIn('value_lowercased', ['techcrunch', 'the verge', 'forbes', 'producthunt', 'vox media']) ->groupBy('value', 'value_lowercased') ->orderBy(DB::raw('COUNT(value_lowercased)'), 'desc') ->limit($limit)