mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
PM-1386 Fix otp data issuer and account name being set correctly (#2411)
This commit is contained in:
committed by
GitHub
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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user