possible null pointer fix

This commit is contained in:
Kyle Spearrin 2018-06-30 08:19:18 -04:00
parent f680b1e856
commit bf99cea004
1 changed files with 5 additions and 1 deletions

View File

@ -172,7 +172,11 @@ namespace Bit.App.Models.Page
{ {
AddRange(groupItems); AddRange(groupItems);
if(doUpper) if(string.IsNullOrWhiteSpace(Name))
{
Name = "-";
}
else if(doUpper)
{ {
Name = name.ToUpperInvariant(); Name = name.ToUpperInvariant();
} }