diff --git a/android/src/com/mapswithme/maps/bookmarks/SystemDownloadCompletedService.java b/android/src/com/mapswithme/maps/bookmarks/SystemDownloadCompletedService.java index 756289a305..e52af7231b 100644 --- a/android/src/com/mapswithme/maps/bookmarks/SystemDownloadCompletedService.java +++ b/android/src/com/mapswithme/maps/bookmarks/SystemDownloadCompletedService.java @@ -162,6 +162,8 @@ public class SystemDownloadCompletedService extends JobIntentService if (TextUtils.isEmpty(productId)) { app.sendPushWooshTags("Bookmarks_Guides_free_title", new String[] {name}); + app.sendPushWooshTags("Bookmarks_Guides_free_date", + new String[] {PushwooshHelper.nativeGetFormattedTimestamp()}); } else { diff --git a/iphone/Maps/Bookmarks/Catalog/CatalogWebViewController.swift b/iphone/Maps/Bookmarks/Catalog/CatalogWebViewController.swift index 4b76199393..9901dae34a 100644 --- a/iphone/Maps/Bookmarks/Catalog/CatalogWebViewController.swift +++ b/iphone/Maps/Bookmarks/Catalog/CatalogWebViewController.swift @@ -421,6 +421,7 @@ private func logToPushWoosh(_ categoryInfo: CatalogCategoryInfo) { if categoryInfo.productId == nil { pushManager!.setTags(["Bookmarks_Guides_free_title": categoryInfo.name]); + pushManager!.setTags(["Bookmarks_Guides_free_date": MWMPushNotifications.formattedTimestamp()]); } else { pushManager!.setTags(["Bookmarks_Guides_paid_tier": categoryInfo.productId!]); pushManager!.setTags(["Bookmarks_Guides_paid_title": categoryInfo.name]);