mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-26 12:16:07 +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))
|
||||
{
|
||||
var parts = label.Split(LABEL_SEPARATOR);
|
||||
AccountName = parts[0].Trim();
|
||||
Issuer = parts[1].Trim();
|
||||
Issuer = parts[0].Trim();
|
||||
AccountName = parts[1].Trim();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user