File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
WordPress/Classes/Utility Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Foundation
2
2
3
3
extension WPAnalytics {
4
4
5
- private static let WPAppAnalyticsKeyQuickStartSiteType : String = " site_type "
5
+ static let WPAppAnalyticsKeyQuickStartSiteType : String = " site_type "
6
6
7
7
/// Track a Quick Start event
8
8
///
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ extension PushNotificationsManager {
431
431
let quickStartType = userInfo. string ( forKey: QuickStartTracking . quickStartTypeKey) {
432
432
WPAnalytics . track ( . quickStartNotificationTapped,
433
433
withProperties: [ QuickStartTracking . taskNameKey: taskName,
434
- QuickStartTracking . quickStartTypeKey : quickStartType] )
434
+ WPAnalytics . WPAppAnalyticsKeyQuickStartSiteType : quickStartType] )
435
435
}
436
436
437
437
completionHandler ? ( . newData)
@@ -462,7 +462,7 @@ extension PushNotificationsManager {
462
462
463
463
WPAnalytics . track ( . quickStartNotificationStarted,
464
464
withProperties: [ QuickStartTracking . taskNameKey: tour. analyticsKey,
465
- QuickStartTracking . quickStartTypeKey : quickStartType. key] )
465
+ WPAnalytics . WPAppAnalyticsKeyQuickStartSiteType : quickStartType. key] )
466
466
}
467
467
468
468
@objc func deletePendingLocalNotifications( ) {
You can’t perform that action at this time.
0 commit comments