quick fix to complies_with_chud

pull/142/head
Aevann 2023-03-23 11:30:21 +02:00
parent 271e585b8d
commit 51e8122b19
1 changed files with 4 additions and 3 deletions

View File

@ -624,8 +624,9 @@ def complies_with_chud(obj):
tags = soup.html.body.find_all('p', recursive=False)
for x in tags:
if obj.author.agendaposter_phrase in str(x.find(text=True, recursive=False)):
return True
for tag in tags:
for text in tag.find_all(text=True, recursive=False):
if obj.author.agendaposter_phrase in text:
return True
return False