Browse Source

Bug 27352: Missed case in bug 25032

Probably because of the order things got pushed.

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Tomás Cohen Arazi 3 years ago
committed by Jonathan Druart
parent
commit
bcb5b076ce
  1. 5
      Koha/REST/V1/Biblios.pm

5
Koha/REST/V1/Biblios.pm

@ -230,10 +230,7 @@ sub get_public {
);
}
catch {
return $c->render(
status => 500,
openapi => { error => "Something went wrong, check the logs ($_)" }
);
$c->unhandled_exception($_);
};
}

Loading…
Cancel
Save