From 0e1769e4b53a99f60c241a4d67e118638c423cdb Mon Sep 17 00:00:00 2001 From: James Ellis Date: Tue, 7 May 2024 15:47:43 -0400 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Track=20device=20updated?= =?UTF-8?q?=20events=20immediately,=20so=20no=20delay=20on=20BE=20availabi?= =?UTF-8?q?lity=20to=20push?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/AppcuesKit/Push/PushMonitor.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/AppcuesKit/Push/PushMonitor.swift b/Sources/AppcuesKit/Push/PushMonitor.swift index 8a980ccad..79b397ee8 100644 --- a/Sources/AppcuesKit/Push/PushMonitor.swift +++ b/Sources/AppcuesKit/Push/PushMonitor.swift @@ -74,7 +74,7 @@ internal class PushMonitor: PushMonitoring { if appcues?.sessionID != nil { analyticsPublisher.publish(TrackingUpdate( - type: .event(name: Events.Device.deviceUpdated.rawValue, interactive: false), + type: .event(name: Events.Device.deviceUpdated.rawValue, interactive: true), isInternal: true )) } @@ -95,7 +95,7 @@ internal class PushMonitor: PushMonitoring { if shouldPublish { self?.analyticsPublisher.publish(TrackingUpdate( - type: .event(name: Events.Device.deviceUpdated.rawValue, interactive: false), + type: .event(name: Events.Device.deviceUpdated.rawValue, interactive: true), isInternal: true )) }