Skip to content

Commit

Permalink
Merge pull request #329 from olucurious/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
olucurious authored Jun 19, 2024
2 parents a02637a + c0b2450 commit 4913001
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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__ = "olucurious@gmail.com"
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


0 comments on commit 4913001

Please sign in to comment.