diff --git a/NOTES.md b/NOTES.md index 812f956..e4a8788 100644 --- a/NOTES.md +++ b/NOTES.md @@ -18,6 +18,10 @@ Rum Goggles Service: # Bugs +Updating chat bot URL does not show up in UI until app is restarted + +Sign in with email does not work + Chat bot rule menu back button does not work in macOS If connection to chat stream breaks, gracefully handle error diff --git a/v1/go.mod b/v1/go.mod index acaea6b..4b885ea 100644 --- a/v1/go.mod +++ b/v1/go.mod @@ -6,7 +6,7 @@ toolchain go1.22.0 require ( github.com/mattn/go-sqlite3 v1.14.22 - github.com/tylertravisty/rumble-livestream-lib-go v0.9.0 + github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 github.com/wailsapp/wails/v2 v2.8.1 ) diff --git a/v1/go.sum b/v1/go.sum index 992b3f7..e1f7d78 100644 --- a/v1/go.sum +++ b/v1/go.sum @@ -60,8 +60,8 @@ github.com/tkrajina/go-reflector v0.5.6 h1:hKQ0gyocG7vgMD2M3dRlYN6WBBOmdoOzJ6njQ github.com/tkrajina/go-reflector v0.5.6/go.mod h1:ECbqLgccecY5kPmPmXg1MrHW585yMcDkVl6IvJe64T4= github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909 h1:xrjIFqzGQXlCrCdMPpW6+SodGFSlrQ3ZNUCr3f5tF1g= github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909/go.mod h1:2W31Jhs9YSy7y500wsCOW0bcamGi9foQV1CKrfvfTxk= -github.com/tylertravisty/rumble-livestream-lib-go v0.9.0 h1:G1b/uac43dq7BG7NzcLeRLPOfOu8GyjViE9s48qhwhw= -github.com/tylertravisty/rumble-livestream-lib-go v0.9.0/go.mod h1:Odkqvsn+2eoWV3ePcj257Ga0bdOqV4JBTfOJcQ+Sqf8= +github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 h1:5qIqq0f/yCEq8n1v2cPxEpDJQoirK2aBnd4dUSGWP/I= +github.com/tylertravisty/rumble-livestream-lib-go v0.9.1/go.mod h1:Odkqvsn+2eoWV3ePcj257Ga0bdOqV4JBTfOJcQ+Sqf8= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go b/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go index b05e050..9d66b94 100644 --- a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go +++ b/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go @@ -88,11 +88,11 @@ func (c *Client) getChatInfo() (*ChatInfo, error) { return nil, fmt.Errorf("error finding end of chat function in webpage") } args := parseRumbleChatArgs(lineS[start : start+end]) - channelID, err := strconv.Atoi(args[5]) + channelID, err := strconv.Atoi(args[6]) if err != nil { return nil, fmt.Errorf("error converting channel ID argument string to int: %v", err) } - chatInfo = &ChatInfo{ChannelID: channelID, ChatID: args[1], UrlPrefix: args[0]} + chatInfo = &ChatInfo{ChannelID: channelID, ChatID: args[2], UrlPrefix: args[0]} } else if strings.Contains(lineS, "media-by--a") && strings.Contains(lineS, "author") { r := strings.NewReader(lineS) node, err := html.Parse(r) diff --git a/v1/vendor/modules.txt b/v1/vendor/modules.txt index bf1a8e9..dacf42e 100644 --- a/v1/vendor/modules.txt +++ b/v1/vendor/modules.txt @@ -77,7 +77,7 @@ github.com/tkrajina/go-reflector/reflector # github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909 ## explicit; go 1.16 github.com/tylertravisty/go-utils/random -# github.com/tylertravisty/rumble-livestream-lib-go v0.9.0 +# github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 ## explicit; go 1.19 github.com/tylertravisty/rumble-livestream-lib-go # github.com/valyala/bytebufferpool v1.0.0