summaryrefslogtreecommitdiff
path: root/ws.go
diff options
context:
space:
mode:
Diffstat (limited to 'ws.go')
-rw-r--r--ws.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ws.go b/ws.go
index 90356d4..a65f803 100644
--- a/ws.go
+++ b/ws.go
@@ -341,7 +341,7 @@ func handleConn(
return fmt.Errorf("error affirming course choice: %w", err)
}
} else {
- err = c.Write(ctx, websocket.MessageText, []byte("R "+mar[1]))
+ err = c.Write(ctx, websocket.MessageText, []byte(fmt.Sprintf("R %s :Full", mar[1])))
if err != nil {
return fmt.Errorf("error rejecting course choice: %w", err)
}