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 6d1b24a commit 5d1121dCopy full SHA for 5d1121d
iib/web/api_v1.py
@@ -681,7 +681,7 @@ def patch_request(request_id: int) -> Tuple[flask.Response, int]:
681
for v in value.values():
682
if not isinstance(v, list) or any(not isinstance(s, str) for s in v):
683
raise ValidationError(exc_msg)
684
- elif key == 'recursive_related_bundles':
+ elif key == 'recursive_related_bundles' or key == 'fbc_fragments_resolved':
685
if not isinstance(value, list):
686
exc_msg = f'The value for "{key}" must be a list of non-empty strings'
687
0 commit comments