From: Daniel Karbach Date: Wed, 13 Nov 2024 11:11:16 +0000 (+0100) Subject: also exclude horstie/localhorst from chatlib X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=c002c7cc2f7aa27f292c19cbcbd04f70b520290f;p=alttp.git also exclude horstie/localhorst from chatlib --- diff --git a/app/Console/Commands/ChatlibDatabase.php b/app/Console/Commands/ChatlibDatabase.php index 9bf143f..621929d 100644 --- a/app/Console/Commands/ChatlibDatabase.php +++ b/app/Console/Commands/ChatlibDatabase.php @@ -40,6 +40,7 @@ class ChatlibDatabase extends Command { ->whereNotNull('evaluated_at') ->where('created_at', '<', now()->sub(7, 'day')) ->whereNotIn('classification', ['gg', 'gl', 'number', 'o7']) + ->whereNotIn('channel_id', [52, 53]) ->where(function ($query) use ($lang) { $query->whereNull('detected_language'); $query->orWhere('detected_language', '=', $lang);