You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found that the filter isn't working properly as stated in the API documentation. It's currently adding an = after ?Filter which is not the correct filter format.
Line 269:
query="${query:-?}${query:+&}filter=$OPTARG"
Should be:
query="${query:-?}${query:+&}filter$OPTARG"
On a secondary Note - the filter includes brackets in the API which are not allowed in the URL. Would be nice if I could just pass the brackets to BS and let it fix it when generating the URL. For now, I'll write the %5B and %5D into my own code.
The text was updated successfully, but these errors were encountered:
Found that the filter isn't working properly as stated in the API documentation. It's currently adding an = after ?Filter which is not the correct filter format.
Line 269:
query="${query:-?}${query:+&}filter=$OPTARG"
Should be:
query="${query:-?}${query:+&}filter$OPTARG"
On a secondary Note - the filter includes brackets in the API which are not allowed in the URL. Would be nice if I could just pass the brackets to BS and let it fix it when generating the URL. For now, I'll write the %5B and %5D into my own code.
The text was updated successfully, but these errors were encountered: