forked from organicmaps/organicmaps-tmp
[iOS] Statistics logging api fix. sourceApplication can be nil
This commit is contained in:
parent
2a5cd0ea7d
commit
98519a1ff8
1 changed files with 4 additions and 1 deletions
|
@ -39,7 +39,10 @@
|
|||
|
||||
- (void)logApiUsage:(NSString *)programName
|
||||
{
|
||||
[[Statistics instance] logEvent:@"Api Usage" withParameters: @{@"Application Name" : programName}];
|
||||
if (programName)
|
||||
[[Statistics instance] logEvent:@"Api Usage" withParameters: @{@"Application Name" : programName}];
|
||||
else
|
||||
[[Statistics instance] logEvent:@"Api Usage" withParameters: @{@"Application Name" : @"Error passing nil as SourceApp name."}];
|
||||
}
|
||||
|
||||
+ (Statistics *) instance
|
||||
|
|
Loading…
Add table
Reference in a new issue