File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export type MuxFrontendMetadata =
2929 | {
3030 type : "script-execution" ;
3131 id : string ;
32- historySequence : number ;
32+ historySequence ? : number ;
3333 timestamp : number ;
3434 command : string ;
3535 scriptName : string ;
@@ -192,7 +192,7 @@ export type DisplayedMessage =
192192 | {
193193 type : "script-execution" ;
194194 id : string ;
195- historySequence : number ;
195+ historySequence ? : number ;
196196 timestamp : number ;
197197 command : string ;
198198 scriptName : string ;
Original file line number Diff line number Diff line change @@ -1293,7 +1293,7 @@ export class IpcMain {
12931293 muxMetadata : {
12941294 type : "script-execution" ,
12951295 id : `script-${ Date . now ( ) } ` , // Can match message ID
1296- historySequence : 0 , // Will be assigned by appendToHistory
1296+ // historySequence: 0, // Will be assigned by appendToHistory
12971297 timestamp : Date . now ( ) ,
12981298 command : command ,
12991299 scriptName : scriptName ,
You can’t perform that action at this time.
0 commit comments