Explorar el Código

fix: discorrect response

Yeuoly hace 8 meses
padre
commit
c20e082cbd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      internal/core/plugin_daemon/backwards_invocation/task.go

+ 1 - 1
internal/core/plugin_daemon/backwards_invocation/task.go

@@ -248,7 +248,7 @@ func genericDispatchTask[T any](
 ) {
 	r, err := parser.MapToStruct[T](handle.RequestData())
 	if err != nil {
-		handle.WriteError(fmt.Errorf("unmarshal invoke tool request failed: %s", err.Error()))
+		handle.WriteError(fmt.Errorf("unmarshal backwards invoke request failed: %s", err.Error()))
 		return
 	}
 	dispatch(handle, r)