mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-09 05:21:13 +02:00
base_xenforo: Fix for extended chars in threadmark chapter names.
This commit is contained in:
parent
6beb0bf2d3
commit
d9d776e8d2
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ class BaseXenForoForumAdapter(BaseSiteAdapter):
|
|||
|
||||
# convenience method.
|
||||
def xml_tag_string(dom,tag):
|
||||
return dom.getElementsByTagName(tag)[0].firstChild.data.encode("utf-8")
|
||||
return dom.getElementsByTagName(tag)[0].firstChild.data.encode("utf-8").decode('utf-8')
|
||||
|
||||
for threadmarksa in threadmarksas:
|
||||
tmcat_num = threadmarksa['href'].split('category_id=')[1]
|
||||
|
|
|
|||
Loading…
Reference in a new issue