mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-01 05:36:57 +02:00
MESSENGER-4034 app icon name
This commit is contained in:
@@ -1515,7 +1515,12 @@ static NSArray<NSNumber*> *initialSyncSilentErrorsHTTPStatusCodes;
|
||||
return;
|
||||
}
|
||||
|
||||
NSString *appDisplayName = [NSString stringWithFormat:@"%@ (iOS)", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"]];
|
||||
NSString *appDisplayName;
|
||||
if(![BWIBuildSettings.shared.secondaryAppName isEqualToString:@""]) {
|
||||
appDisplayName = BWIBuildSettings.shared.secondaryAppName;
|
||||
} else {
|
||||
appDisplayName = [[NSBundle mainBundle] infoDictionary][@"CFBundleDisplayName"];
|
||||
}
|
||||
|
||||
NSString *b64Token = [token base64EncodedStringWithOptions:0];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user