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
|
||||
|
|
|
@ -23,7 +23,7 @@ func sendClientCommand(conn *websocket.Conn, msg models.ClientCommand) {
|
|||
}
|
||||
}
|
||||
|
||||
func SendCmd(conn *websocket.Conn, cmd string, pwd string) {
|
||||
func SendCmd(conn *websocket.Conn, pwd string, cmd string) {
|
||||
message := models.ClientCommand{
|
||||
Command: cmd,
|
||||
Password: pwd,
|
||||
|
|
Loading…
Reference in a new issue