Unescape generic feeds.

This commit is contained in:
lost 2021-11-09 00:00:00 +00:00
parent a0f2449c25
commit 240370e347
Signed by: 0x80
GPG Key ID: 00B9C3A6C02F71F6
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
from utils import *
from download_page import download
from html import unescape
# portable code to get filename
import os
@ -134,4 +135,4 @@ def extract (url, page=None, network=False, verbosity=3, args={}):
else:
domain = url[:index]
feed = domain + feed
return feed
return unescape(feed)