From 48603a02e7c02398912b13f7201c025ac0203f8f Mon Sep 17 00:00:00 2001 From: cottongin Date: Fri, 15 May 2026 22:09:08 -0400 Subject: [PATCH] chore: update voting URLs --- bridge/jackbox/websocket_client.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bridge/jackbox/websocket_client.go b/bridge/jackbox/websocket_client.go index 688f0d4..a765611 100644 --- a/bridge/jackbox/websocket_client.go +++ b/bridge/jackbox/websocket_client.go @@ -475,8 +475,8 @@ func (c *WebSocketClient) AnnounceSessionEnd() { func (c *WebSocketClient) handlePollStart() { c.log.Info("Poll started") - ircMsg := "🗳️ There is a new poll open! Your vote is \x02REQUIRED\x02 https://hso.ehsf.cc/vote" - plainMsg := "🗳️ There is a new poll open! Your vote is *REQUIRED* https://hso.ehsf.cc/vote" + ircMsg := "🗳️ There is a new poll open! Your vote is \x02REQUIRED\x02 https://hyperspaceout.com/vote" + plainMsg := "🗳️ There is a new poll open! Your vote is *REQUIRED* https://hyperspaceout.com/vote" if c.formattedMessageCallback != nil { c.formattedMessageCallback(ircMsg, plainMsg) @@ -493,8 +493,8 @@ func (c *WebSocketClient) handlePollEnding(data json.RawMessage) { c.log.Infof("Poll ending in %d seconds", pollData.DelaySeconds) - ircMsg := fmt.Sprintf("🗳️ \x02HURRY!\x02 https://hso.ehsf.cc/vote Go vote now, the poll is closing in %d seconds", pollData.DelaySeconds) - plainMsg := fmt.Sprintf("🗳️ *HURRY!* https://hso.ehsf.cc/vote Go vote now, the poll is closing in %d seconds", pollData.DelaySeconds) + ircMsg := fmt.Sprintf("🗳️ \x02HURRY!\x02 https://hyperspaceout.com/vote Go vote now, the poll is closing in %d seconds", pollData.DelaySeconds) + plainMsg := fmt.Sprintf("🗳️ *HURRY!* https://hyperspaceout.com/vote Go vote now, the poll is closing in %d seconds", pollData.DelaySeconds) if c.formattedMessageCallback != nil { c.formattedMessageCallback(ircMsg, plainMsg)