From 792b414c64e4016a6bb256b3c5d8aef8461e5cdc Mon Sep 17 00:00:00 2001 From: Eroax Date: Sun, 21 Jan 2024 22:51:48 -0700 Subject: [PATCH] Patched Twitch_Setup_Dialog erroring after NoTwitch Update --- graph_node_renderer/twitch_setup_dialog.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph_node_renderer/twitch_setup_dialog.gd b/graph_node_renderer/twitch_setup_dialog.gd index 7091404..b092cb8 100644 --- a/graph_node_renderer/twitch_setup_dialog.gd +++ b/graph_node_renderer/twitch_setup_dialog.gd @@ -42,7 +42,7 @@ func copy_auth_link(): func connect_to_chat(): - if Connections.twitch.chat_socket.get_ready_state() != WebSocketPeer.STATE_OPEN: + if !Connections.twitch.get("chat_socket") or Connections.twitch.chat_socket.get_ready_state() != WebSocketPeer.STATE_OPEN: Connections.twitch.setup_chat_connection(%Default_Chat.text)