[iOS] fix open catalog event

This commit is contained in:
Aleksey Belouosv 2018-10-01 15:39:36 +03:00 committed by Vlad Mihaylenko
parent 8bef31d29c
commit 91fb68f510
2 changed files with 1 additions and 1 deletions

View file

@ -105,7 +105,6 @@ final class CatalogWebViewController: WebViewController {
override func webView(_ webView: WKWebView, didCommit navigation: WKNavigation!) {
if !statSent {
Statistics.logEvent("Bookmarks_Downloaded_Catalogue_open")
statSent = true
MWMEye.boomarksCatalogShown()
}

View file

@ -57,6 +57,7 @@ class DownloadedBookmarksViewController: MWMViewController {
withParameters: [kStatError : "no_internet"])
return
}
Statistics.logEvent("Bookmarks_Downloaded_Catalogue_open")
let webViewController = CatalogWebViewController()
MapViewController.topViewController().navigationController?.pushViewController(webViewController,
animated: true)