Skip to content

Commit

Permalink
Fix delay start condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Hopsaheysa committed Mar 18, 2024
1 parent 4d86e4c commit 59bee8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WultraMobileTokenSDK/Operations/WMTOperations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ public extension WMTOperations {
///
/// - Parameters:
/// - interval: Default is set to 7 seconds, with a minimum value of 5 seconds.
/// - delayStart: Default is set to true. Polling starts after the first `interval` time passes
/// - delayStart: Default is set to false and polling starts immediately.
func startPollingOperations() {
return startPollingOperations(interval: 7, delayStart: true)
return startPollingOperations(interval: 7, delayStart: false)
}
}

Expand Down

0 comments on commit 59bee8f

Please sign in to comment.