Fix incorrect eventName parameter parse

This commit is contained in:
ruslan-bikkinin 2017-12-18 17:26:34 +03:00
Родитель 1cf192f80e
Коммит c3f38e38e1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -49,7 +49,7 @@
- (void)trackEvent:(CDVInvokedUrlCommand *)command
{
NSString* eventName = [[command argumentAtIndex:0] stringValue];
NSString* eventName = [command argumentAtIndex:0 withDefault:nil andClass:[NSString class]];
NSDictionary* properties = [command argumentAtIndex:1];
[MSAnalytics trackEvent:eventName withProperties:properties];