Skip to content

Commit 1188aad

Browse files
committed
fix url
1 parent e6dd484 commit 1188aad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ApplePayDemo/ShippingRateCalculator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ShippingRateCalculator: NSObject {
2020
class func fetchShippingRatesForAddress(address: ABRecord!, completion: (([PKShippingMethod]?, NSError?) -> Void)) {
2121

2222
func urlForAddress(address: ABRecord!) -> NSURL {
23-
let base = "https://243569b5.ngrok.com/rates"
23+
let base = "https://applepay-shipping-example.herokuapp.com/rates"
2424
let addressValues : CFTypeRef = ABRecordCopyValue(address, kABPersonAddressProperty).takeRetainedValue();
2525
if ABMultiValueGetCount(addressValues) > 0 {
2626
var dict = ABMultiValueCopyValueAtIndex(addressValues, 0).takeRetainedValue() as NSDictionary

0 commit comments

Comments
 (0)