mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-07 00:16:57 +08:00
fix #3090
This commit is contained in:
@@ -36,7 +36,10 @@ class TNodeSiteUserInfo(SiteParserBase):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def _parse_user_detail_info(self, html_text: str):
|
def _parse_user_detail_info(self, html_text: str):
|
||||||
detail = json.loads(html_text)
|
try:
|
||||||
|
detail = json.loads(html_text)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
return
|
||||||
if detail.get("status") != 200:
|
if detail.get("status") != 200:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user