Skip to content
This repository was archived by the owner on Oct 21, 2020. It is now read-only.

Commit 2149c2f

Browse files
committed
serve docs over https, build 61
1 parent 3663cc8 commit 2149c2f

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

Raiblocks/Info.plist

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</dict>
2929
</array>
3030
<key>CFBundleVersion</key>
31-
<string>60</string>
31+
<string>61</string>
3232
<key>Fabric</key>
3333
<dict>
3434
<key>APIKey</key>
@@ -45,11 +45,6 @@
4545
</dict>
4646
<key>LSRequiresIPhoneOS</key>
4747
<true/>
48-
<key>NSAppTransportSecurity</key>
49-
<dict>
50-
<key>NSAllowsArbitraryLoads</key>
51-
<true/>
52-
</dict>
5348
<key>NSCameraUsageDescription</key>
5449
<string>Nano Wallet uses your camera to scan Wallet Seed and Nano Address QR Codes</string>
5550
<key>NSFaceIDUsageDescription</key>

Raiblocks/New User Experience/LegalViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ final class LegalViewController: UIViewController {
262262
"date": dateString
263263
])
264264

265-
let vc = WebViewController(url: URL(string: "http://nanowalletcompany.com/ios-eula")!, useForLegalPurposes: true, agreement: .eula)
265+
let vc = WebViewController(url: URL(string: "https://nanowalletcompany.com/ios-eula")!, useForLegalPurposes: true, agreement: .eula)
266266
vc.delegate = self
267267
present(vc, animated: true)
268268
}
@@ -273,7 +273,7 @@ final class LegalViewController: UIViewController {
273273
"date": dateString
274274
])
275275

276-
let vc = WebViewController(url: URL(string: "http://nanowalletcompany.com/mobile-privacy-policy")!, useForLegalPurposes: true, agreement: .privacyPolicy)
276+
let vc = WebViewController(url: URL(string: "https://nanowalletcompany.com/mobile-privacy-policy")!, useForLegalPurposes: true, agreement: .privacyPolicy)
277277
vc.delegate = self
278278
present(vc, animated: true)
279279
}

Raiblocks/SettingsViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,11 +246,11 @@ final class SettingsViewController: UIViewController {
246246
}
247247

248248
@objc func viewEula() {
249-
self.present(WebViewController(url: URL(string: "http://nanowalletcompany.com/ios-eula")!, useForLegalPurposes: false), animated: true)
249+
self.present(WebViewController(url: URL(string: "https://nanowalletcompany.com/ios-eula")!, useForLegalPurposes: false), animated: true)
250250
}
251251

252252
@objc func viewPrivacyPolicy() {
253-
self.present(WebViewController(url: URL(string: "http://nanowalletcompany.com/mobile-privacy-policy")!, useForLegalPurposes: false), animated: true)
253+
self.present(WebViewController(url: URL(string: "https://nanowalletcompany.com/mobile-privacy-policy")!, useForLegalPurposes: false), animated: true)
254254
}
255255

256256
@objc func viewOnExplorer(_ sender: UIButton) {

0 commit comments

Comments
 (0)