diff --git a/internal/jsonrpc/handler.go b/internal/jsonrpc/handler.go index 27d34d0..30f3ef9 100644 --- a/internal/jsonrpc/handler.go +++ b/internal/jsonrpc/handler.go @@ -91,6 +91,7 @@ func (h *Handler) HandleRequest(ctx context.Context, s *session.Session, r io.Re reqerr := res[1].Interface().(error) slog.Error("API Method", reqerr, "method", req.Method, "id", req.ID) respondError(w, req.ID, ErrInternalError, reqerr) + return nil } respondResult(w, req.ID, result)