mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
PM-1386 Fix otp data issuer and account name being set correctly (#2411)
This commit is contained in:
parent
9f8307a4ff
commit
f733d22d55
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue