Skip to content

Commit

Permalink
fix for streaming with files
Browse files Browse the repository at this point in the history
  • Loading branch information
OvidijusParsiunas committed Apr 4, 2024
1 parent 37097ca commit 49599bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion component/src/services/utils/baseServiceIO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class BaseServiceIO implements ServiceIO {

private async request(body: any, messages: Messages, stringifyBody = true) {
if (this.stream && !Stream.isSimulation(this.stream)) {
return Stream.request(this, body, messages);
return Stream.request(this, body, messages, stringifyBody);
}
return HTTPRequest.request(this, body, messages, stringifyBody);
}
Expand Down

0 comments on commit 49599bf

Please sign in to comment.