1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

format long strings

This commit is contained in:
Kyle Spearrin
2018-03-30 10:14:46 -04:00
parent 005a97d0b0
commit 64cd0b8942
2 changed files with 8 additions and 8 deletions

View File

@ -35,9 +35,9 @@ namespace Bit.Setup
}
else
{
var message = "You are not using an SSL certificate. Bitwarden requires HTTPS to operate. " +
"You must front your installation with a HTTPS proxy. The web vault (and other Bitwarden " +
"apps) will not work properly without HTTPS.";
var message = "You are not using an SSL certificate. Bitwarden requires HTTPS to operate. \n" +
"You must front your installation with a HTTPS proxy. The web vault (and \n" +
"other Bitwarden apps) will not work properly without HTTPS.";
Helpers.ShowBanner("WARNING", message, ConsoleColor.Yellow);
}
}