From 9006e91fe496f17a0a8b77bec5ed5fa1c5e4bf6c Mon Sep 17 00:00:00 2001 From: Dan Charlesworth Date: Mon, 3 Jun 2024 11:35:29 +1000 Subject: [PATCH] Revise default FCM_MAX_RECIPIENTS FCM v1 API seems to have changed this limit, so django-push-notifications should adhere to that --- push_notifications/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push_notifications/settings.py b/push_notifications/settings.py index 5fba8b33..1d86ec02 100644 --- a/push_notifications/settings.py +++ b/push_notifications/settings.py @@ -9,7 +9,7 @@ # FCM PUSH_NOTIFICATIONS_SETTINGS.setdefault("FIREBASE_APP", None) -PUSH_NOTIFICATIONS_SETTINGS.setdefault("FCM_MAX_RECIPIENTS", 1000) +PUSH_NOTIFICATIONS_SETTINGS.setdefault("FCM_MAX_RECIPIENTS", 500) # APNS if settings.DEBUG: