Skip to content

Commit 3b8bb1a

Browse files
committed
apply filters to dict values
Signed-off-by: Drew Shafer <[email protected]>
1 parent 607978b commit 3b8bb1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_declarative_apis/machinery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def get_response(self):
192192
apply_filters_to_object(item, filter_def)
193193
)
194194
else:
195-
result[key] = value
195+
result[key] = apply_filters_to_object(value, filter_def)
196196

197197
return status_code, result
198198
else:

0 commit comments

Comments
 (0)