fix int match

This commit is contained in:
Nils Büchner 2025-02-11 19:37:34 +01:00
parent e0290646df
commit 8ab903a4c7

View file

@ -216,7 +216,7 @@ class Ubottu(Plugin):
bug_id = match[1]
if match[2]:
bug_id = match[2]
if bug_id < 1000:
if int(bug_id) < 1000:
return False
if self.flood_protection.flood_check_bug(bug_id) and self.flood_protection.flood_check(evt.sender):
data = await self.lookup_launchpad_bug(bug_id)