mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-24 10:32:46 +02:00
MESSENGER-4034 app icon name
This commit is contained in:
@@ -1174,7 +1174,12 @@ NSString *const MXKContactManagerDataType = @"org.matrix.kit.MXKContactManagerDa
|
||||
|
||||
+ (void)requestUserConfirmationForLocalContactsSyncInViewController:(UIViewController *)viewController completionHandler:(void (^)(BOOL))handler
|
||||
{
|
||||
NSString *appDisplayName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"];
|
||||
NSString *appDisplayName;
|
||||
if(![BWIBuildSettings.shared.secondaryAppName isEqualToString:@""]) {
|
||||
appDisplayName = BWIBuildSettings.shared.secondaryAppName;
|
||||
} else {
|
||||
appDisplayName = [[NSBundle mainBundle] infoDictionary][@"CFBundleDisplayName"];
|
||||
}
|
||||
|
||||
[MXKContactManager requestUserConfirmationForLocalContactsSyncWithTitle:[VectorL10n localContactsAccessDiscoveryWarningTitle]
|
||||
message:[VectorL10n localContactsAccessDiscoveryWarning:appDisplayName]
|
||||
|
||||
Reference in New Issue
Block a user