From a44176ceba70d5c01991fb1398d1223617815794 Mon Sep 17 00:00:00 2001 From: jenz Date: Sun, 10 Aug 2025 15:55:17 +0200 Subject: [PATCH] skipping the event suggestions thread --- event_notification/python/scrape_event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/event_notification/python/scrape_event.py b/event_notification/python/scrape_event.py index 385968c..c5cd5c6 100644 --- a/event_notification/python/scrape_event.py +++ b/event_notification/python/scrape_event.py @@ -30,7 +30,7 @@ class unloze_spider(scrapy.Spider): newest_thread = None threads = response.xpath("//div[@class='structItem-title']/@uix-href").extract() for thread in threads: - if "poll" in thread.lower() or "nomination-thread" in thread.lower(): + if "poll" in thread.lower() or "nomination-thread" in thread.lower() or "events-suggestion-thread" in thread.lower(): continue newest_thread = thread break