1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-24 15:14:30 +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) result, err := searchProvider.ParseAndExec(c.QueryParams().Encode(), &records)
if err != nil { if err != nil {
return NewBadRequestError("Invalid filter parameters.", err) return NewBadRequestError("", err)
} }
event := new(core.RecordsListEvent) event := new(core.RecordsListEvent)