update rss_proxy.py

* testing fixes description
This commit is contained in:
2025-03-05 20:31:54 +03:00
parent 087eaaf7ce
commit 166af498bf

View File

@@ -87,7 +87,8 @@ def init_proxy(app):
title = item.find("title") title = item.find("title")
print(title.text) print(title.text)
title.text = re.sub(r'&#\d+;', '', title.text) new_title = re.sub(r'&#\d+;', '', title.text)
title.text = new_title
if cached_item: if cached_item:
cached_items.append(cached_item.decode()) cached_items.append(cached_item.decode())