Expanded debugging + Changes

This commit is contained in:
Salastil
2025-10-19 02:03:13 -04:00
parent 3a2cb0a90b
commit e35a067484
6 changed files with 417 additions and 443 deletions

View File

@@ -27,7 +27,7 @@ const (
type Client struct {
wsURL string
roomID int
cookies *cookie.RefreshService
cookies *cookie.CookieRefreshService
conn *websocket.Conn
connected bool
@@ -58,7 +58,7 @@ type Client struct {
bridgeUsername string
}
func NewClient(roomID int, cookieSvc *cookie.RefreshService) *Client {
func NewClient(roomID int, cookieSvc *cookie.CookieRefreshService) *Client {
return &Client{
wsURL: "wss://kiwifarms.st:9443/chat.ws",
roomID: roomID,