diff --git a/server/kitsu/anatomy.py b/server/kitsu/anatomy.py index e98d303..3927875 100644 --- a/server/kitsu/anatomy.py +++ b/server/kitsu/anatomy.py @@ -210,8 +210,11 @@ async def get_kitsu_project_anatomy( anatomy_preset = await get_primary_anatomy_preset() anatomy_dict = anatomy_preset.dict() - - anatomy_dict["attributes"] = attributes + for key in anatomy_dict["attributes"]: + if key in attributes: + anatomy_dict["attributes"][key]=attributes[key] + + #anatomy_dict["attributes"] = attributes anatomy_dict["statuses"] = statuses anatomy_dict["task_types"] = task_types