Skip to content

Commit

Permalink
Revise default FCM_MAX_RECIPIENTS (#725)
Browse files Browse the repository at this point in the history
FCM v1 API seems to have changed this limit, so django-push-notifications should adhere to that
  • Loading branch information
djch authored Jun 3, 2024
1 parent 0f79181 commit 0a1e9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion push_notifications/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0a1e9eb

Please sign in to comment.