fix(http): adjust client id argument name on request command usage

This commit is contained in:
Lucas Nogueira
2023-05-02 13:40:57 -03:00
parent e9bbe94181
commit dabacbe644
+1 -1
View File
@@ -338,7 +338,7 @@ class Client {
options.responseType = ResponseType.Text
}
return invoke<IResponse<T>>('plugin:http|request', {
client: this.id,
clientId: this.id,
options
}).then((res) => {
const response = new Response(res)