From 15359d1de59e45192f99243e11f57509df6322b8 Mon Sep 17 00:00:00 2001 From: kcw-grunt Date: Sat, 5 Nov 2022 10:52:44 +0000 Subject: [PATCH] normalized query to the server --- loafwallet/BuyTableViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loafwallet/BuyTableViewController.swift b/loafwallet/BuyTableViewController.swift index a33de705f..65f7a1a14 100644 --- a/loafwallet/BuyTableViewController.swift +++ b/loafwallet/BuyTableViewController.swift @@ -42,7 +42,7 @@ class BuyTableViewController: UITableViewController, SFSafariViewControllerDeleg let timestamp = Int(appInstallDate.timeIntervalSince1970) /// Production url request - let urlString = APIServer.baseUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&idate=\(timestamp)&uid=\(uuidString)&code=\(currencyCode)" + let urlString = APIServer.baseUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&code=\(currencyCode)&idate=\(timestamp)&uid=\(uuidString)" //DEV: Local url request for API Server debugging // let urlString = APIServer.localUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&idate=\(timestamp)&uid=\(uuidString)&code=\(currencyCode)"