From d7d4cd907ed91c56ebf28eeaeb7ea27ac2bd331d Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 24 Mar 2020 09:09:14 -0400 Subject: [PATCH] Tweak "account already attached" verbiage --- oauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth.go b/oauth.go index 80f3e1d..9073f75 100644 --- a/oauth.go +++ b/oauth.go @@ -255,7 +255,7 @@ func (h oauthHandler) viewOauthCallback(app *App, w http.ResponseWriter, r *http } if localUserID != -1 && attachUserID > 0 { - if err = addSessionFlash(app, w, r, "Slack account is already attached to a user.", nil); err != nil { + if err = addSessionFlash(app, w, r, "This Slack account is already attached to another user.", nil); err != nil { return impart.HTTPError{Status: http.StatusInternalServerError, Message: err.Error()} } return impart.HTTPError{http.StatusFound, "/me/settings"}