forked from organicmaps/organicmaps
[iOS] Fixed random in PaidRouteSubscriptionCampaign
https://jira.mail.ru/browse/MAPSME-12830
This commit is contained in:
parent
d6ed428c81
commit
9747e1a9e7
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue