From 7625f451f0878389c245b4047dfaed5eca79b01b Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Thu, 11 Feb 2021 17:31:55 -0800 Subject: [PATCH] Change invalid default remote config namespace "configns:firebase" to "firebase", which fixes a sporadic "Invalid Argument" error from the server. --- remote_config/src/desktop/remote_config_desktop.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote_config/src/desktop/remote_config_desktop.cc b/remote_config/src/desktop/remote_config_desktop.cc index 73e94d2233..0fa9107002 100644 --- a/remote_config/src/desktop/remote_config_desktop.cc +++ b/remote_config/src/desktop/remote_config_desktop.cc @@ -39,7 +39,7 @@ namespace internal { using callback::NewCallback; -const char* const RemoteConfigInternal::kDefaultNamespace = "configns:firebase"; +const char* const RemoteConfigInternal::kDefaultNamespace = "firebase"; const char* const RemoteConfigInternal::kDefaultValueForString = ""; const int64_t RemoteConfigInternal::kDefaultValueForLong = 0L; const double RemoteConfigInternal::kDefaultValueForDouble = 0.0;