We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9053227 commit 6d38528Copy full SHA for 6d38528
LeanplumSDK/LeanplumSDK/ClassesSwift/Actions/ActionManager+Executor.swift
@@ -9,9 +9,9 @@ import Foundation
9
10
extension ActionManager {
11
func performActions() {
12
- // If we are paused, exit as we will continue execution
+ // If we are paused or disabled, exit as we will continue execution
13
// when we are resumed.
14
- guard isPaused == false else {
+ guard !isPaused, isEnabled else {
15
return
16
}
17
0 commit comments