mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
possible null pointer fix
This commit is contained in:
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user