Skip to content

Commit

Permalink
fix: discovery enabled by default (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-chekyrta authored May 9, 2024
1 parent 83ce168 commit 5305a92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Core/Configuration/Config/DiscoveryConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class DiscoveryConfig: NSObject {
init(dictionary: [String: AnyObject]) {
type = (dictionary[DiscoveryKeys.discoveryType] as? String).flatMap {
DiscoveryConfigType(rawValue: $0)
} ?? .none
} ?? .native
webview = DiscoveryWebviewConfig(dictionary: dictionary[DiscoveryKeys.webview] as? [String: AnyObject] ?? [:])
}

Expand Down

0 comments on commit 5305a92

Please sign in to comment.