Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #329

Merged
merged 7 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyfcm/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__summary__ = "Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)"
__url__ = "https://github.com/olucurious/pyfcm"

__version__ = "2.0.1"
__version__ = "2.0.2"

__author__ = "Emmanuel Adegbite"
__email__ = "[email protected]"
Expand Down
3 changes: 1 addition & 2 deletions pyfcm/fcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,4 @@ def async_notify_multiple_devices(self, params_list=None, timeout=5):
if params_list is None:
params_list = []

payloads = [self.parse_payload(**params) for params in params_list]
return self.send_async_request(payloads=payloads, timeout=timeout)
return self.send_async_request(params_list=params_list, timeout=timeout)
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pyasn1==0.6.0
pyasn1-modules==0.4.0
rsa==4.9
requests>=2.6.0
urllib3==1.26.5
urllib3==1.26.19
pytest-mock==3.14.0


Loading