[iOS] Fixed random in PaidRouteSubscriptionCampaign

https://jira.mail.ru/browse/MAPSME-12830
This commit is contained in:
Alexander Boriskov 2019-12-26 13:37:33 +03:00 committed by Aleksey Belousov
parent d6ed428c81
commit 9747e1a9e7

View file

@ -19,8 +19,8 @@
let action = SubscribeActionType(rawValue: stored) {
actionType = action;
} else {
let stored = abs(Alohalytics.installationId().hashValue) % 2
actionType = SubscribeActionType(rawValue: stored) ?? .instant
let stored = arc4random()%2
actionType = SubscribeActionType(rawValue: Int(stored)) ?? .instant
UserDefaults.standard.set(stored, forKey: storageKey)
}
}