27 Mar
2026
27 Mar
'26
4:26 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41783 --- Comment #4 from Brendan Lawlor <blawlor@clamsnet.org> --- This works and makes sense that you have to encode stringified JSON in order for it to be url safe. I think the problem was actually with {} and : in the request url Before the patch the API request url started like: http://localhost:8081/api/v1/suggestions?q={%22me.STATUS%22:%22ASKED%22,%22archived%22:0}&... After the patch the : http://localhost:8081/api/v1/suggestions?q=%7B%22archived%22%3A0%2C%22me.STATUS%22%3A%22ASKED%22%7D&... The rest of the url starting with &_page= was the same before and after the patch Nice work. Passing QA! -- You are receiving this mail because: You are watching all bug changes.