We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d0c4e commit 68b59e6Copy full SHA for 68b59e6
rest_framework_json_api/serializers.py
@@ -83,7 +83,7 @@ def validate_path(serializer_class, field_path, path):
83
if len(field_path) > 1:
84
new_included_field_path = field_path[-1:]
85
# We go down one level in the path
86
- validate_path(this_included_serializer, new_included_field_path, serializers, path)
+ validate_path(this_included_serializer, new_included_field_path, path)
87
88
if request and view:
89
include_resources_param = request.query_params.get('include') if request else None
0 commit comments