File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ Master
31
31
- ext.commands
32
32
- Bug fixes
33
33
- Make sure double-quotes are properly tokenized for bot commands
34
-
34
+
35
35
- ext.pubsub
36
36
- Additions
37
37
- Websocket automatically handles "RECONNECT" requests by Twitch
38
- - Bug fixes
38
+ - Bug fixes
39
39
- Unsubscribing from Pubsubevents works again
40
40
- Fix a forgotten nonce in :func: `~twitchio.ext.pubsub.websocket._send_topics `
41
41
- :class: `~twitchio.ext.pubsub.PubSubModerationActionChannelTerms ` now uses the correct type data
@@ -63,7 +63,15 @@ Master
63
63
64
64
65
65
- Bug fixes
66
- Correct typo in :class: `~twitchio.ext.eventsub.HypeTrainBeginProgressData ` attribute :attr: `~twitchio.ext.eventsub.HypeTrainBeginProgressData.expires `
66
+ - Correct typo in :class: `~twitchio.ext.eventsub.HypeTrainBeginProgressData ` attribute :attr: `~twitchio.ext.eventsub.HypeTrainBeginProgressData.expires `
67
+ - Correct typo "revokation" to "revocation" in server _message_types.
68
+
69
+ - ext.pubsub
70
+ - Bug fixes
71
+ - "type" of :class: `~twitchio.ext.pubsub.PubSubModerationActionChannelTerms ` now uses the correct type data
72
+
73
+ - Correct typo in :class: `~twitchio.ext.eventsub.HypeTrainBeginProgressData ` attribute :attr: `~twitchio.ext.eventsub.HypeTrainBeginProgressData.expires `
74
+
67
75
68
76
2.4.0
69
77
======
Original file line number Diff line number Diff line change 22
22
_message_types = {
23
23
"webhook_callback_verification" : models .ChallengeEvent ,
24
24
"notification" : models .NotificationEvent ,
25
- "revokation " : models .RevokationEvent ,
25
+ "revocation " : models .RevokationEvent ,
26
26
}
27
27
28
28
@@ -242,7 +242,7 @@ async def _callback(self, request: web.Request) -> web.Response:
242
242
self .client .run_event (
243
243
f"eventsub_notification_{ models .SubscriptionTypes ._name_map [event .subscription .type ]} " , event
244
244
)
245
- elif typ == "revokation " :
245
+ elif typ == "revocation " :
246
246
self .client .run_event ("eventsub_revokation" , event )
247
247
248
248
return response
You can’t perform that action at this time.
0 commit comments