mirror of
https://github.com/bitwarden/mobile
synced 2025-01-31 18:55:51 +01:00
PM-1386 Fix otp data issuer and account name being set correctly (#2411)
This commit is contained in:
parent
9f8307a4ff
commit
f733d22d55
@ -32,8 +32,8 @@ namespace Bit.Core.Utilities
|
|||||||
if (label.Contains(LABEL_SEPARATOR))
|
if (label.Contains(LABEL_SEPARATOR))
|
||||||
{
|
{
|
||||||
var parts = label.Split(LABEL_SEPARATOR);
|
var parts = label.Split(LABEL_SEPARATOR);
|
||||||
AccountName = parts[0].Trim();
|
Issuer = parts[0].Trim();
|
||||||
Issuer = parts[1].Trim();
|
AccountName = parts[1].Trim();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user