mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 17:23:18 +00:00
Fix for EMM system configuration for mobile (#1434)
This commit is contained in:
@@ -381,7 +381,7 @@ namespace Bit.App.Utilities
|
||||
|
||||
public static async Task SetPreconfiguredSettingsAsync(IDictionary<string, string> configSettings)
|
||||
{
|
||||
if (configSettings?.Any() ?? true)
|
||||
if (configSettings?.Any() != true)
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -403,7 +403,7 @@ namespace Bit.App.Utilities
|
||||
Icons = environmentService.IconsUrl
|
||||
});
|
||||
}
|
||||
break;
|
||||
return;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user