diff --git a/go.mod b/go.mod index 89e4ff2..bfc9bab 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.23.6 require ( github.com/google/uuid v1.6.0 - github.com/shinosaki/websocket-client-go v1.0.0 + github.com/shinosaki/websocket-client-go v1.0.1 golang.org/x/crypto v0.35.0 golang.org/x/net v0.35.0 ) diff --git a/go.sum b/go.sum index 4a0a519..eee35b0 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,7 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/shinosaki/websocket-client-go v1.0.0 h1:k70Nl86Cn1jjhBdYs77MyjWUR9xPHA94Mev8Ual1TiE= -github.com/shinosaki/websocket-client-go v1.0.0/go.mod h1:fzgEpoLabqcgOjDVPo7dh6dTqhbCTgd3SdWO2a+fPxg= +github.com/shinosaki/websocket-client-go v1.0.1 h1:QMi2c7sqMWX4EWetNdoTj6rzB8BXVFRcAYlnaAncFPA= +github.com/shinosaki/websocket-client-go v1.0.1/go.mod h1:fzgEpoLabqcgOjDVPo7dh6dTqhbCTgd3SdWO2a+fPxg= golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs= golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ= golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8= diff --git a/sites/nicopush/client.go b/sites/nicopush/client.go index 9673791..043550b 100644 --- a/sites/nicopush/client.go +++ b/sites/nicopush/client.go @@ -66,7 +66,7 @@ func NewNicoPushClient( // Handshake performs a handshake with the AutoPush server and retrieves a UAID. // The obtained UAID is used for client identification and should be saved. func (c *NicoPushClient) Handshake() (uaid string, err error) { - if err := c.autoPushClient.Connect(autopush.MOZILLA_PUSH_SERVICE, 3, 2); err != nil { + if err := c.autoPushClient.Connect(autopush.MOZILLA_PUSH_SERVICE, 3, 2, false); err != nil { return "", fmt.Errorf("failed to connect autopush server: %v", err) }