1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 00:33:20 +00:00

Fix for short profile Name value crashing app (#1833)

This commit is contained in:
Matt Portune
2022-03-09 09:00:04 -05:00
committed by GitHub
parent c043528a16
commit bf33f23c12
5 changed files with 17 additions and 2 deletions

View File

@@ -327,6 +327,7 @@ namespace Bit.Core.Services
var organizations = response.Organizations.ToDictionary(o => o.Id, o => new OrganizationData(o));
await _organizationService.ReplaceAsync(organizations);
await _stateService.SetEmailVerifiedAsync(response.EmailVerified);
await _stateService.SetNameAsync(response.Name);
await _keyConnectorService.SetUsesKeyConnector(response.UsesKeyConnector);
}