chore: reorder parameters in SendCmd function

🤖
This commit is contained in:
Sebastian Mark 2024-10-23 13:18:33 +02:00
parent e1984aca10
commit a61da7d280
2 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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,