Skip to content

Commit

Permalink
Improve error message wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Renshaw committed Jan 15, 2016
1 parent 741fe20 commit 1532b01
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions shell/packages/sandstorm-accounts-ui/login_buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ var loginResultCallback = function (serviceName, err) {
// do nothing
} else if (err instanceof ServiceConfiguration.ConfigError) {
loginButtonsSession.errorMessage(
"The " + serviceName + " login service has a configuration problem (" + err.message + ")." +
"\n\n\n Please contact your server administrator. ");
"Configuration problem: " + err.message + ". Please visit the Admin Settings page within " +
"Sandstorm, or ask your administrator to do so. You may need an admin token. Read more by " +
"clicking Troubleshooting below.");
} else {
loginButtonsSession.errorMessage(err.reason || "Unknown error");
}
Expand Down

0 comments on commit 1532b01

Please sign in to comment.