File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
android-core/src/main/java/com/mparticle/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,9 @@ object PushRegistrationHelper {
65
65
val newPushRegistration = PushRegistration (instanceId, senderId)
66
66
val pushRegistration = configManager.pushRegistration
67
67
68
- // If this new push registration matches the existing persisted value we can will defer logging it until a new Session starts
68
+ // If this new push registration matches the existing persisted value we can will defer logging it until a new Session starts
69
69
if (mParticle == null || (mParticle.currentSession == null && newPushRegistration == pushRegistration)) {
70
- // If the SDK isn't started, OR if a Session hasn't started and this is a duplicate push registration,
70
+ // If the SDK isn't started, OR if a Session hasn't started and this is a duplicate push registration,
71
71
// log the push notification as a background push in the ConfigManager and we will send a IdentityApi.modify() call when it starts up.
72
72
ConfigManager .getInstance(context).setPushRegistrationInBackground(PushRegistration (instanceId, senderId))
73
73
} else {
You can’t perform that action at this time.
0 commit comments