From 78712541f0f28884264227f3e220bd63129cdd39 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Wed, 12 Jan 2022 18:01:57 +0000 Subject: [PATCH] update "incompatible link" message --- src/Simplex/Chat/View.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Simplex/Chat/View.hs b/src/Simplex/Chat/View.hs index 6305091c9..96499a999 100644 --- a/src/Simplex/Chat/View.hs +++ b/src/Simplex/Chat/View.hs @@ -121,10 +121,10 @@ showSentInvitation = printToView ["connection request sent!"] showInvalidConnReq :: ChatReader m => m () showInvalidConnReq = printToView - [ "Connection link is invalid!", - "Possibly, it was created in a newer version (to check version: " <> highlight' "/v" <> ")", - "To upgrade (Linux/Mac):", - "curl -o- https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/install.sh | bash" + [ "", + "Connection link is invalid, possibly it was created in a previous version.", + "Please ask your contact to check " <> highlight' "/version" <> " and update if needed.", + plain updateStr ] showChatError :: ChatReader m => ChatError -> m ()