From aa5e68536dc7841033df1458d660d77dc63f23b5 Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Wed, 3 Sep 2014 14:14:34 +0200 Subject: [PATCH] Fix formatting of appname in crash reports Fixes highlights on HockeyApp backend of apps with special chars in their name --- Classes/BITCrashManager.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/BITCrashManager.m b/Classes/BITCrashManager.m index ff5af9be57..02d27f60f2 100644 --- a/Classes/BITCrashManager.m +++ b/Classes/BITCrashManager.m @@ -1327,8 +1327,8 @@ static PLCrashReporterCallbacks plCrashCallbacks = { } } - crashXML = [NSString stringWithFormat:@"%s%@%@%@%@%@%@%@%@%@%@%@", - [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleExecutable"] UTF8String], + crashXML = [NSString stringWithFormat:@"%@%@%@%@%@%@%@%@%@%@%@%@", + [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleExecutable"], appBinaryUUIDs, appBundleIdentifier, osVersion,