forked from organicmaps/organicmaps
[alohalytics][ios] Log HTTP UserAgent directly for easier processing on the server-side.
This commit is contained in:
parent
2f03f8b944
commit
df3e973fe8
1 changed files with 3 additions and 0 deletions
|
@ -296,6 +296,9 @@ static UIBackgroundTaskIdentifier sBackgroundTaskId = UIBackgroundTaskInvalid;
|
|||
// Initialize User Agent later, as it takes significant time at startup.
|
||||
dispatch_async(dispatch_get_main_queue(), ^(void) {
|
||||
gBrowserUserAgent = [[[UIWebView alloc] initWithFrame:CGRectZero] stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
|
||||
if (gBrowserUserAgent) {
|
||||
Stats::Instance().LogEvent("$browserUserAgent", ToStdString(gBrowserUserAgent));
|
||||
}
|
||||
});
|
||||
// Subscribe to basic app lifecycle events.
|
||||
sBackgroundThreadQueue = ::dispatch_queue_create([serverUrl UTF8String], DISPATCH_QUEUE_SERIAL);
|
||||
|
|
Loading…
Add table
Reference in a new issue