mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-28 21:07:59 +00:00
Fix Filters.regex failing in case the value is None
This commit is contained in:
parent
22eb42e1f3
commit
5b94c340c0
@ -323,7 +323,8 @@ class Filters:
|
|||||||
else:
|
else:
|
||||||
raise ValueError("Regex filter doesn't work with {}".format(type(update)))
|
raise ValueError("Regex filter doesn't work with {}".format(type(update)))
|
||||||
|
|
||||||
update.matches = list(flt.p.finditer(value)) or None
|
if value:
|
||||||
|
update.matches = list(flt.p.finditer(value)) or None
|
||||||
|
|
||||||
return bool(update.matches)
|
return bool(update.matches)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user