You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and after the replacing in jsonLd._extractItems():
# sometimes JSON-decoding errors are due to leading HTML or JavaScript comments
data = json.loads(
HTML_OR_JS_COMMENTLINE.sub('', script), strict=False)
The text was updated successfully, but these errors were encountered:
advance512
changed the title
https://lubelska.co.uk/JSONDecodeError: Extra data: line 21 column 1 (char 572) for URL
JSONDecodeError: Extra data: line 21 column 1 (char 572) for URL https://lubelska.co.uk/
Jun 16, 2020
Seems that the issue is that the JSON-LD document is:
and after the replacing in
jsonLd._extractItems()
:it becomes:
and naturally this part which was not replaced:
causes the error.
The text was updated successfully, but these errors were encountered: