From 67e67e59be4724c575b1416896a644b31eb8e3de Mon Sep 17 00:00:00 2001 From: tyler Date: Fri, 19 Jan 2024 13:29:07 -0500 Subject: [PATCH] Fixed issue with building chat url --- chat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat.go b/chat.go index a5a8100..922a52d 100644 --- a/chat.go +++ b/chat.go @@ -28,7 +28,7 @@ func (ci *ChatInfo) MessageUrl() string { } func (ci *ChatInfo) StreamUrl() string { - return fmt.Sprintf("%s/chat/api/chat/%s/stream", ci.UrlPrefix, ci.ChatID) + return fmt.Sprintf("%s/chat/%s/stream", ci.UrlPrefix, ci.ChatID) } func (c *Client) ChatInfo() error {