mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 11:01:12 +00:00
Merge pull request #3305 from dato/export_catch_missing_key_icon
json_export: also detect absent "icon" key
This commit is contained in:
commit
6dfb5000cc
1 changed files with 1 additions and 4 deletions
|
@ -80,10 +80,7 @@ def json_export(
|
|||
exported_user = user.to_activity()
|
||||
# I don't love this but it prevents a JSON encoding error
|
||||
# when there is no user image
|
||||
if isinstance(
|
||||
exported_user["icon"],
|
||||
dataclasses._MISSING_TYPE, # pylint: disable=protected-access
|
||||
):
|
||||
if exported_user.get("icon") in (None, dataclasses.MISSING):
|
||||
exported_user["icon"] = {}
|
||||
else:
|
||||
# change the URL to be relative to the JSON file
|
||||
|
|
Loading…
Reference in a new issue