diff --git a/WMF Framework/Event Platform/EventPlatformClient.swift b/WMF Framework/Event Platform/EventPlatformClient.swift index 4b028f4220c..a00a2da4728 100644 --- a/WMF Framework/Event Platform/EventPlatformClient.swift +++ b/WMF Framework/Event Platform/EventPlatformClient.swift @@ -156,7 +156,7 @@ import CocoaLumberjackSwift case login = "/analytics/mobile_apps/ios_login_action/1.0.2" case navigation = "/analytics/mobile_apps/ios_navigation_events/1.0.0" case editAttempt = "/analytics/legacy/editattemptstep/1.4.0" - case watchlist = "/analytics/mobile_apps/ios_watchlists/1.0.0" + case watchlist = "/analytics/mobile_apps/ios_watchlists/2.0.0" } /** diff --git a/Wikipedia/Code/WatchlistFunnel.swift b/Wikipedia/Code/WatchlistFunnel.swift index 522ba70adf5..7d4d6d6ee1d 100644 --- a/Wikipedia/Code/WatchlistFunnel.swift +++ b/Wikipedia/Code/WatchlistFunnel.swift @@ -6,7 +6,7 @@ final class WatchlistFunnel { static let shared = WatchlistFunnel() private enum Action: String, Codable { - case openDiff = "open_diff" + case diffOpen = "diff_open" case diffUserMenu = "diff_user_menu" case diffUserMenuFrom = "diff_user_menu_from" case diffUserMenuTo = "diff_user_menu_to" @@ -80,7 +80,7 @@ final class WatchlistFunnel { guard let project else { return } - logEvent(action: .openDiff, project: project) + logEvent(action: .diffOpen, project: project) } func logDiffTapSingleEditorName(project: WikimediaProject?) {