From 57f35299007cd7a3c0666e14910ad6431bd9c44d Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Sat, 23 May 2026 17:10:28 +0300 Subject: [PATCH] =?UTF-8?q?=D8=AA=D8=BA=D9=8A=D9=8A=D8=B1=20=D8=A7=D9=84?= =?UTF-8?q?=D9=85=D8=B3=D9=85=D9=8A=D8=A7=D8=AA=20=D8=A7=D9=84=D9=85=D8=B7?= =?UTF-8?q?=D8=A8=D9=88=D8=B9=D8=A9=20=D8=A5=D9=84=D9=89=20Flash=20Call=20?= =?UTF-8?q?OTP=20=D9=88=D8=AA=D9=81=D8=B9=D9=8A=D9=84=20=D8=A7=D9=84=D9=84?= =?UTF-8?q?=D9=88=D8=AC=20=D8=A7=D9=84=D8=AA=D9=81=D8=B5=D9=8A=D9=84=D9=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- whatsapp-gateway/baileys-client.js | 2 +- whatsapp-gateway/server.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/whatsapp-gateway/baileys-client.js b/whatsapp-gateway/baileys-client.js index 4c5a383..0c8214e 100644 --- a/whatsapp-gateway/baileys-client.js +++ b/whatsapp-gateway/baileys-client.js @@ -73,7 +73,7 @@ async function startSession(session_key, webhook_url) { }, printQRInTerminal: false, logger: logger, - browser: ['Nabeh Gateway', 'Chrome', '120.0.0'], + browser: ['Flash Call OTP Gateway', 'Chrome', '120.0.0'], // Message retry counter cache — tracks how many times each message // retry has been attempted, preventing infinite retry loops msgRetryCounterCache, diff --git a/whatsapp-gateway/server.js b/whatsapp-gateway/server.js index 09f75c4..4178eeb 100644 --- a/whatsapp-gateway/server.js +++ b/whatsapp-gateway/server.js @@ -31,7 +31,7 @@ const PORT = process.env.PORT || 3722; // Health check endpoint (Public) app.get('/health', (req, res) => { - res.json({ status: 'healthy', service: 'Nabeh WhatsApp Gateway' }); + res.json({ status: 'healthy', service: 'Flash Call OTP WhatsApp Gateway' }); }); // Security Middleware: Protect all /api/ routes @@ -121,5 +121,5 @@ app.post('/api/messages/send', async (req, res) => { }); app.listen(PORT, () => { - console.log(`🚀 Nabeh WhatsApp Gateway running on port ${PORT}`); + console.log(`🚀 Flash Call OTP WhatsApp Gateway running on port ${PORT}`); });