View | Details | Raw Unified | Return to bug 27352
Collapse All | Expand All

(-)a/Koha/REST/V1/Biblios.pm (-5 / +1 lines)
Lines 230-239 sub get_public { Link Here
230
        );
230
        );
231
    }
231
    }
232
    catch {
232
    catch {
233
        return $c->render(
233
        $c->unhandled_exception($_);
234
            status  => 500,
235
            openapi => { error => "Something went wrong, check the logs ($_)" }
236
        );
237
    };
234
    };
238
}
235
}
239
236
240
- 

Return to bug 27352