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 contentcuration/contentcuration/viewsets/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def unnest_dict(dictionary):
class DotPathValueMixin(object):
def get_value(self, dictionary):
# get just field name
value = dictionary.get(self.field_name, dict())
value = dictionary.get(self.field_name, {})

if value is None:
return empty
Expand Down