Fixed issue with building chat url

This commit is contained in:
tyler 2024-01-19 13:29:07 -05:00
parent 735a171e67
commit 67e67e59be

View file

@ -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 {