Fix HTTPS issue

pull/35/head
Niels Andriesse 6 years ago
parent 90b0e5e417
commit 9088a1f87d

@ -87,6 +87,13 @@
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>imaginary.stream</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>signal.org</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
@ -94,6 +101,20 @@
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>storage.seed1.loki.network</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>storage.seed2.loki.network</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>whispersystems.org</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>

@ -39,7 +39,7 @@ public extension LokiAPI {
}
// MARK: Clearnet Setup
fileprivate static let seedNodePool: Set<String> = [ "http://storage.seed1.loki.network:22023/", "http://storage.seed2.loki.network:38157", "http://imaginary.stream:38157" ]
fileprivate static let seedNodePool: Set<String> = [ "http://storage.seed1.loki.network:22023", "http://storage.seed2.loki.network:38157", "http://imaginary.stream:38157" ]
fileprivate static var randomSnodePool: Set<LokiAPITarget> = []
@objc public static func clearRandomSnodePool() {

Loading…
Cancel
Save