Skip to content

Commit b0047ea

Browse files
committed
No comment
1 parent f042c1d commit b0047ea

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ replace github.com/Danny-Dasilva/CycleTLS => github.com/xaionaro-go/CycleTLS v0.
3939

4040
replace github.com/dexterlb/mpvipc => github.com/xaionaro-go/mpvipc v0.0.0-20251019230357-e0f534e5dde4
4141

42+
replace github.com/RomainMichau/cloudscraper_go => github.com/xaionaro-go/cloudscraper v0.0.0-20251019213127-d3687042cb55
43+
4244
require (
4345
github.com/facebookincubator/go-belt v0.0.0-20250308011339-62fb7027b11f
4446
github.com/go-git/go-billy/v5 v5.6.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA
122122
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
123123
github.com/ProtonMail/go-crypto v1.1.5 h1:eoAQfK2dwL+tFSFpr7TbOaPNUbPiJj4fLYwwGE1FQO4=
124124
github.com/ProtonMail/go-crypto v1.1.5/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
125-
github.com/RomainMichau/cloudscraper_go v0.4.1 h1:np8XbbkXXTPK+KOqtO49FYiAD34bYCL2Ndi3Sefw40M=
126-
github.com/RomainMichau/cloudscraper_go v0.4.1/go.mod h1:j+U5wG7A4FASVo0vroqf3td+9k0+RbLRH62IlYxg7Ao=
127125
github.com/abema/go-mp4 v1.4.1 h1:YoS4VRqd+pAmddRPLFf8vMk74kuGl6ULSjzhsIqwr6M=
128126
github.com/abema/go-mp4 v1.4.1/go.mod h1:vPl9t5ZK7K0x68jh12/+ECWBCXoWuIDtNgPtU2f04ws=
129127
github.com/adeithe/go-twitch v0.3.1 h1:vGvnS3zq8fYl1sCK0I5dUozlb24eHUp1j2zZXxaBchU=
@@ -1105,6 +1103,8 @@ github.com/xaionaro-go/avmediacodec v0.0.0-20250505012527-c819676502d8 h1:FZn9+T
11051103
github.com/xaionaro-go/avmediacodec v0.0.0-20250505012527-c819676502d8/go.mod h1:2W2Kp/HJFXcFBppQ4YytgDy/ydFL3hGc23xSB1U/Luc=
11061104
github.com/xaionaro-go/avpipeline v0.0.0-20250929013757-2eb9ecc88185 h1:eZyEeFRd9Dk7gDfgkQ6ORHawh9RjUR+nBDayATHwmQ8=
11071105
github.com/xaionaro-go/avpipeline v0.0.0-20250929013757-2eb9ecc88185/go.mod h1:TiLj0o11F3HnNXC8MraetW1/MIM3x0ROUrruxBpeSuw=
1106+
github.com/xaionaro-go/cloudscraper v0.0.0-20251019213127-d3687042cb55 h1:rHvnuVmqa9M+id2Q8e0V/csp0jDhXIBAAuCC76mBW8k=
1107+
github.com/xaionaro-go/cloudscraper v0.0.0-20251019213127-d3687042cb55/go.mod h1:mFODbc87KEjFfERrFjmAGajGZOBQq+kzMd+2wsAZSHo=
11081108
github.com/xaionaro-go/datacounter v1.0.4 h1:+QMZLmu73R5WGkQfUPwlXF/JFN+Weo4iuDZkiL2wVm8=
11091109
github.com/xaionaro-go/datacounter v1.0.4/go.mod h1:Sf9vBevuV6w5iE6K3qJ9pWVKcyS60clWBUSQLjt5++c=
11101110
github.com/xaionaro-go/eventbus v0.0.0-20250720144534-4670758005d9 h1:ZAm8ueMw5D85LDeV1Kboc3ANqXr3LK/eXIl9hj1BJyM=

pkg/streamcontrol/twitch/chat_handler_irc_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ func TestChatHandlerIRC(t *testing.T) {
5454
require.NoError(t, err)
5555

5656
expectedEvent := streamcontrol.ChatMessage{
57-
EventType: 1,
58-
UserID: "user-id",
59-
Username: "user-id",
60-
MessageID: "message-id",
61-
Message: "some\nmulti line\n message",
57+
EventType: 1,
58+
UserID: "user-id",
59+
Username: "user-id",
60+
MessageID: "message-id",
61+
Message: "some\nmulti line\n message",
6262
MessageFormatType: 1,
6363
}
6464

0 commit comments

Comments
 (0)