Skip to content
Snippets Groups Projects
Commit dd5fb21f authored by Antoine Lambert's avatar Antoine Lambert Committed by Antoine Lambert
Browse files

api/snapshot: Fix regression triggering error with postgresql storage

We missed it as swh-web tests are executed with a memory storage backend.
parent 8c079d3b
No related branches found
No related tags found
1 merge request!1390api/snapshot: Fix regression triggering error with postgresql storage
Pipeline #13445 passed
......@@ -66,7 +66,7 @@ class SnapshotQuerySerializer(serializers.Serializer):
min_value=0,
max_value=snapshot_content_max_size,
)
target_types = TargetTypesField(default="", required=False)
target_types = TargetTypesField(default=None, required=False)
@api_route(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment