https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16330 --- Comment #23 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Comment on attachment 54942 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=54942 Bug 16330: REST API: add routes to add, update and delete patrons Review of attachment 54942: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=16330&attachment=54942) ----------------------------------------------------------------- ::: Koha/REST/V1/Patron.pm @@ +85,5 @@
+ Koha::Patron->new($body)->store; + }; + + unless ($patron) { + return $c->$cb({error => "Something went wrong, check Koha logs for details"}, 500);
You surrounded the store with an eval, so nothing will be logged. -- You are receiving this mail because: You are watching all bug changes.