null check

This commit is contained in:
Kyle Spearrin 2019-06-07 10:31:41 -04:00
parent 060e1a822f
commit d199c83a61
1 changed files with 6 additions and 1 deletions

View File

@ -21,8 +21,13 @@ namespace Bit.App.Utilities
Special
}
public static FormattedString FormatPassword(String password)
public static FormattedString FormatPassword(string password)
{
if(password == null)
{
return new FormattedString();
}
var result = new FormattedString();
// Start off with an empty span to prevent possible NPEs. Due to the way the state machine
// works, this will actually always be replaced by a new span anyway.