1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-18 13:47:47 +02:00

removed incorrect base error message

This commit is contained in:
Gani Georgiev 2023-12-03 20:55:15 +02:00
parent 58a2d3cd09
commit 04024cb6b7

View File

@ -74,7 +74,7 @@ func (api *recordApi) list(c echo.Context) error {
result, err := searchProvider.ParseAndExec(c.QueryParams().Encode(), &records)
if err != nil {
return NewBadRequestError("Invalid filter parameters.", err)
return NewBadRequestError("", err)
}
event := new(core.RecordsListEvent)