File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/core/src/codewhispererChat
controllers/chat/messenger Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -950,7 +950,7 @@ export class Messenger {
950950 )
951951 )
952952 }
953-
953+
954954 public sendDirectiveMessage ( tabID : string , triggerID : string , message : string ) {
955955 this . dispatcher . sendChatMessage (
956956 new ChatMessage (
@@ -970,8 +970,8 @@ export class Messenger {
970970 )
971971 )
972972 }
973-
974- /**
973+
974+ /**
975975 * Check if a trigger has been cancelled and should not proceed
976976 * @param triggerId The trigger ID to check
977977 * @returns true if the trigger is cancelled and should not proceed
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ export class ExecuteBash {
266266 collect : false ,
267267 waitForStreams : true ,
268268 onStdout : async ( chunk : string ) => {
269- if ( cancellationToken ?. isCancellationRequested ) {
269+ if ( cancellationToken ?. isCancellationRequested ) {
270270 this . logger . debug ( 'Bash command execution cancelled during stderr processing' )
271271 return
272272 }
@@ -281,7 +281,7 @@ export class ExecuteBash {
281281 processQueue ( )
282282 } ,
283283 onStderr : async ( chunk : string ) => {
284- if ( cancellationToken ?. isCancellationRequested ) {
284+ if ( cancellationToken ?. isCancellationRequested ) {
285285 this . logger . debug ( 'Bash command execution cancelled during stderr processing' )
286286 return
287287 }
You can’t perform that action at this time.
0 commit comments