Skip to content

Commit

Permalink
Fix build checks
Browse files Browse the repository at this point in the history
  • Loading branch information
somanchiu authored Jan 27, 2024
1 parent 92cbf31 commit 6aac155
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/BingAIClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,9 @@ export default class BingAIClient {
replySoFar = updatedText.replace(stopToken, '').trim();
return;
}
if(!messages[0].messageType)
if (!messages[0].messageType) {
replySoFar = updatedText;
}
return;
}
case 2: {
Expand Down

0 comments on commit 6aac155

Please sign in to comment.