From 18a7c47d5e5fac7a299c938fda813c51b35d3c2d Mon Sep 17 00:00:00 2001 From: a-maurice Date: Wed, 12 Aug 2026 17:08:18 -0700 Subject: [PATCH] [Messaging] Change notification to allow same id --- messaging/src/common.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/messaging/src/common.cc b/messaging/src/common.cc index 135af14df6..bd4c46fa01 100644 --- a/messaging/src/common.cc +++ b/messaging/src/common.cc @@ -172,11 +172,6 @@ void NotifyListenerOnRegistrationReceived(const char* installationId) { return; } MutexLock lock(g_listener_lock); - if (g_prev_registration_received && - *g_prev_registration_received == installationId) { - return; - } - if (!g_prev_registration_received) g_prev_registration_received = new std::string; *g_prev_registration_received = installationId;