fix bug in 80cfc9d
This commit is contained in:
@@ -256,7 +256,7 @@ class RSSParser:
|
|||||||
p = HTMLSimpleParser()
|
p = HTMLSimpleParser()
|
||||||
if 'link' in m and m['link'] is not None:
|
if 'link' in m and m['link'] is not None:
|
||||||
p.baseUrl = m['link']
|
p.baseUrl = m['link']
|
||||||
p.feed(s)
|
p.feed(unescape(s))
|
||||||
if p.data == '' and i.firstChild.nodeValue.find('<') == -1:
|
if p.data == '' and i.firstChild.nodeValue.find('<') == -1:
|
||||||
m[i.nodeName] = i.firstChild.nodeValue
|
m[i.nodeName] = i.firstChild.nodeValue
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user