Skip to content

Commit a26ccef

Browse files
committed
Update Linux abstract UNIX socket name.
1 parent 4e67315 commit a26ccef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controlSocket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class ControlSocket {
3333
async requestPause(ctrlSocket: string): Promise<void> {
3434
let retval
3535
if (process.platform === 'linux') {
36-
retval = await this.executeCtrlCmd(`\0${ctrlSocket}y`.padEnd(108, 'x'), 'pause')
36+
retval = await this.executeCtrlCmd(`\0${ctrlSocket}`, 'pause')
3737
} else if (process.platform === 'win32') {
3838
retval = await this.executeCtrlCmd(`\\\\.\\pipe\\${ctrlSocket}`, 'pause')
3939
} else {

0 commit comments

Comments
 (0)