From b89e9b235c447b56ea24c6843d94fa26b0e0e5e9 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 15 Aug 2023 18:34:55 +0300 Subject: [PATCH] Adjust bridge state messages --- bridgestate.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bridgestate.go b/bridgestate.go index 918d23e..22e3071 100644 --- a/bridgestate.go +++ b/bridgestate.go @@ -41,12 +41,12 @@ const ( func init() { status.BridgeStateHumanErrors.Update(status.BridgeStateErrorMap{ GMListenError: "Error polling messages from Google Messages server, the bridge will try to reconnect", - GMFatalError: "Google Messages token was invalidated, please re-link the bridge", - GMUnpaired: "Unpaired from Google Messages, please re-link to continue using the bridge", + GMFatalError: "Fatal error polling messages from Google Messages server, please re-link the bridge", + GMUnpaired: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS", GMBrowserInactive: "Google Messages opened in another browser", GMBrowserInactiveTimeout: "Google Messages disconnected due to timeout", GMBrowserInactiveInactivity: "Google Messages disconnected due to inactivity", - GMPhoneNotResponding: "Your phone is not responding, please check that it is connected to the internet", + GMPhoneNotResponding: "Your phone is not responding, please check that it is connected to the internet. You may need to open the Messages app on your phone for it to reconnect.", }) }