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.
2 parents 326e4ca + 66cf3f7 commit 19be619Copy full SHA for 19be619
swift-sdk/IterableAPI.swift
@@ -129,7 +129,12 @@ public final class IterableAPI: NSObject {
129
@objc(handleUniversalLink:)
130
@discardableResult
131
public static func handle(universalLink url: URL) -> Bool {
132
- internalImplementation?.handleUniversalLink(url) ?? false
+ if let internalImplementation = internalImplementation {
133
+ return internalImplementation.handleUniversalLink(url)
134
+ } else {
135
+ IterableAPIInternal.pendingUniversalLink = url
136
+ return false
137
+ }
138
}
139
140
/// Add an entry in the device attributes
0 commit comments