From 9fa6a49846ce1b4671cf676e9eb3bca6bbbab610 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Fri, 28 Jul 2017 15:53:38 -0700 Subject: [PATCH] Fix diffing of device so as not to lose custom data --- Apptentive/Apptentive/Engagement/Model/ApptentiveConversation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apptentive/Apptentive/Engagement/Model/ApptentiveConversation.m b/Apptentive/Apptentive/Engagement/Model/ApptentiveConversation.m index 17cbb8af6..cf069585b 100644 --- a/Apptentive/Apptentive/Engagement/Model/ApptentiveConversation.m +++ b/Apptentive/Apptentive/Engagement/Model/ApptentiveConversation.m @@ -196,7 +196,7 @@ - (void)checkForDiffs { } // See if any of the non-custom device attributes have changed - _device = [[ApptentiveDevice alloc] initWithCurrentDevice]; + [self.device updateWithCurrentDeviceValues]; [self checkForDeviceDiffs]; }