Skip to content

Commit

Permalink
- bump library to avoid RPC's percent encoding "?"
Browse files Browse the repository at this point in the history
- ensure whatever URLs are supplied and updated on each app launch
  • Loading branch information
simonmcl committed Feb 13, 2024
1 parent 6583162 commit f2ad2bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"location" : "https://github.com/kukai-wallet/kukai-core-swift",
"state" : {
"branch" : "develop",
"revision" : "d9fa35dfde5cb03deac48db01f2a4fcd4d9a12e8"
"revision" : "50642c483fcc185a2bf55f3fc2334154f703b79d"
}
},
{
Expand Down
7 changes: 7 additions & 0 deletions Kukai Mobile/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// process special arguments coming from XCUITest to do things like show keyboard and reset app data
processXCUITestArguments()

// Reset server URL list cache, incase its edited between versions
if DependencyManager.shared.currentNetworkType == .mainnet {
DependencyManager.shared.setDefaultMainnetURLs()
} else {
DependencyManager.shared.setDefaultTestnetURLs()
}

return true
}

Expand Down

0 comments on commit f2ad2bc

Please sign in to comment.