mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 08:13:20 +00:00
Updated Incorrect Check Condition (#648)
Issue is fixed No 361 Now tested on android device extra comma is not appended anymore
This commit is contained in:
committed by
Kyle Spearrin
parent
ac7e90c0aa
commit
f6352f5392
@@ -48,7 +48,7 @@ namespace Bit.Core.Models.View
|
|||||||
_subTitle = Brand;
|
_subTitle = Brand;
|
||||||
if(Number != null && Number.Length >= 4)
|
if(Number != null && Number.Length >= 4)
|
||||||
{
|
{
|
||||||
if(string.IsNullOrWhiteSpace(_subTitle))
|
if(!string.IsNullOrWhiteSpace(_subTitle))
|
||||||
{
|
{
|
||||||
_subTitle += ", ";
|
_subTitle += ", ";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user