Compare commits

..

4 Commits

Author SHA1 Message Date
19b8d7fb49 Merge pull request '1.2.2' (#4) from dev into latest
All checks were successful
Build And Publish Package / publish (push) Successful in 34s
Reviewed-on: #4
2026-03-08 07:32:09 +03:00
818affc74b Merge pull request '1.2.1' (#3) from dev into latest
All checks were successful
Build And Publish Package / publish (push) Successful in 35s
Reviewed-on: #3
2026-03-08 00:27:16 +03:00
93fe1beb2f Merge pull request '1.2.0' (#2) from dev into latest
All checks were successful
Build And Publish Package / publish (push) Successful in 38s
Reviewed-on: #2
2026-02-26 15:23:58 +03:00
8dc0781e96 Merge pull request '1.1.0' (#1) from dev into latest
All checks were successful
Build And Publish Package / publish (push) Successful in 38s
Reviewed-on: #1
2026-02-25 12:26:19 +03:00
2 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "oxidetwitch"
version = "1.2.3"
version = "1.2.2"
description = "Client for Twitch API"
readme = "README.md"
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]

View File

@ -1470,14 +1470,12 @@ class TwitchAPIClient(OxideHTTP):
'/eventsub/subscriptions',
s.EventsubBaseSubscriptions,
self._auth(access_token),
self.clean_dict(
{
'status': status,
'type': sub_type,
'user_id': user_id,
'subscription_id': subscription_id,
}
),
{
'status': status,
'type': sub_type,
'user_id': user_id,
'subscription_id': subscription_id,
},
cache_ttl,
):
for item in data.data: