Skip to content

Commit

Permalink
fix issue #308
Browse files Browse the repository at this point in the history
  • Loading branch information
olucurious committed Jun 19, 2024
1 parent d200980 commit c0b2450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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)

0 comments on commit c0b2450

Please sign in to comment.