Closed bishwaranjans closed 2 months ago
Thanks @bishwaranjans
Can you just check the logic for the decision made? Currently it is:
if not qualifier_path:
return _process_response(doc_id, identifiers, qualifier_path)
else:
return _process_response(doc_id, identifiers)
With the change you made, I think it should be this. Can you check your end?
if not qualifier_path:
return _process_response(doc_id, identifiers)
else:
return _process_response(doc_id, identifiers, qualifier_path)
... which we could simplify this to:
return _process_response(doc_id, identifiers, qualifier_path or None)
return _process_response(doc_id, identifiers, qualifier_path or None)
This is now implemented
Fixed the bug for casting error with null and string