aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2022-03-14 19:58:52 +0000
committerGravatar GitHub <[email protected]>2022-03-14 19:58:52 +0000
commitdf5e7ef848bc8f764bb943eb3f9e528715a04e07 (patch)
tree6f847f238687659854983b1036e0b6f526ac94e2
parentAdd regex tag (#2109) (diff)
parentIncrease watch API call limit to 10,000 (diff)
Merge pull request #2114 from python-discord/jb3/increase-watch-limit
-rw-r--r--bot/exts/moderation/watchchannels/bigbrother.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/watchchannels/bigbrother.py b/bot/exts/moderation/watchchannels/bigbrother.py
index b0a48ceff..f19e3d103 100644
--- a/bot/exts/moderation/watchchannels/bigbrother.py
+++ b/bot/exts/moderation/watchchannels/bigbrother.py
@@ -22,7 +22,7 @@ class BigBrother(WatchChannel, Cog, name="Big Brother"):
destination=Channels.big_brother_logs,
webhook_id=Webhooks.big_brother,
api_endpoint='bot/infractions',
- api_default_params={'active': 'true', 'type': 'watch', 'ordering': '-inserted_at'},
+ api_default_params={'active': 'true', 'type': 'watch', 'ordering': '-inserted_at', 'limit': 10_000},
logger=log
)