Compare commits

...

2 Commits

Author SHA1 Message Date
f9b66f8951 Merge pull request '1.0.3' (#3) from dev into latest
All checks were successful
Build And Publish Package / publish (push) Successful in 33s
Reviewed-on: #3
2026-03-06 22:43:57 +03:00
35524a736f Исправлено неправильная передача токенов в centrifuge_subscribe
All checks were successful
Verify Dev Build / publish (push) Successful in 34s
2026-03-06 22:42:18 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[project] [project]
name = "oxidedonationalerts" name = "oxidedonationalerts"
version = "1.0.2" version = "1.0.3"
description = "Client for DonationAlerts API" description = "Client for DonationAlerts API"
readme = "README.md" readme = "README.md"
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }] authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]

View File

@ -137,8 +137,8 @@ class DonationAlertsAPIClient(OxideHTTP):
) -> s.CentrifugeSubscribe: ) -> s.CentrifugeSubscribe:
req = await self.post( req = await self.post(
'/centrifuge/subscribe', '/centrifuge/subscribe',
None,
self._auth(access_token), self._auth(access_token),
None,
{'client': client, 'channels': subscriptions}, {'client': client, 'channels': subscriptions},
) )