From 1db0f2857680328bf656ec5522ccc88abfd61a84 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Sun, 12 Apr 2020 17:50:46 +0000 Subject: [PATCH] Notifications limit changed to 100 --- functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/index.js b/functions/index.js index c60c20b..262acd5 100644 --- a/functions/index.js +++ b/functions/index.js @@ -7,7 +7,7 @@ admin.initializeApp(); var db = admin.firestore(); -const MAX_NOTIFICATIONS_PER_DAY = 150; +const MAX_NOTIFICATIONS_PER_DAY = 100; exports.sendPushNotification = functions.https.onRequest(async (req, res) => { if (debug()) console.log('Received payload', req.body);