Commit 35b86ee5 by Tom Christie

Merge pull request #772 from preed/preed/ModelSerializer-bool-fix

Don't have the ModelSerializer trust deserialized objects to not have re...
parents c39ef12d 88955836
......@@ -741,7 +741,7 @@ class ModelSerializer(Serializer):
Override the default method to also include model field validation.
"""
instance = super(ModelSerializer, self).from_native(data, files)
if instance:
if not self._errors:
return self.full_clean(instance)
def save_object(self, obj, **kwargs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment