Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oscar_odin/mappings/catalogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def _attribute_value_to_native_type(item):
return item.value.option

elif obj_type == item.attribute.MULTI_OPTION:
return item.value.values_list("option", flat=True)
return [value.option for value in item.value]

elif obj_type == item.attribute.FILE:
return item.value.url
Expand Down