chore: reorder parameters in SendCmd function
🤖
This commit is contained in:
parent
e1984aca10
commit
a61da7d280
2 changed files with 6 additions and 6 deletions
|
@ -25,7 +25,7 @@ func Start() {
|
|||
|
||||
websocket.Send_updateSettings(conn, *password)
|
||||
if *autoStart {
|
||||
websocket.SendCmd(conn, "start", *password)
|
||||
websocket.SendCmd(conn, *password, "start")
|
||||
}
|
||||
|
||||
go websocket.ProcessServerMessages(conn)
|
||||
|
@ -34,18 +34,18 @@ func Start() {
|
|||
switch key.String() {
|
||||
case "space":
|
||||
if !shared.ServerMessage.Ongoing {
|
||||
websocket.SendCmd(conn, "start", *password)
|
||||
websocket.SendCmd(conn, *password, "start")
|
||||
return false, nil
|
||||
}
|
||||
if shared.ServerMessage.Paused {
|
||||
websocket.SendCmd(conn, "resume", *password)
|
||||
websocket.SendCmd(conn, *password, "resume")
|
||||
return false, nil
|
||||
} else {
|
||||
websocket.SendCmd(conn, "pause", *password)
|
||||
websocket.SendCmd(conn, *password, "pause")
|
||||
return false, nil
|
||||
}
|
||||
case "r":
|
||||
websocket.SendCmd(conn, "stop", *password)
|
||||
websocket.SendCmd(conn, *password, "stop")
|
||||
return false, nil
|
||||
case "q":
|
||||
interrupt <- os.Interrupt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue