json_export: also detect absent "icon" key

This commit is contained in:
Adeodato Simó 2024-03-03 18:42:27 -03:00
parent dd9d68c97d
commit 09c3d9c0dc
No known key found for this signature in database
GPG key ID: CDF447845F1A986F

View file

@ -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