https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41783
--- Comment #4 from Brendan Lawlor <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
