Manos Chorianopoulos

fix Map merchants on unified single coupon

...@@ -515,7 +515,12 @@ import AVFoundation ...@@ -515,7 +515,12 @@ import AVFoundation
515 swiftApi().logTrackersEvent("click", "SeeShops") 515 swiftApi().logTrackersEvent("click", "SeeShops")
516 516
517 let vc = SwiftWarplyFramework.MapsViewController(nibName: "MapsViewController", bundle: Bundle(for: MyEmptyClass.self)) 517 let vc = SwiftWarplyFramework.MapsViewController(nibName: "MapsViewController", bundle: Bundle(for: MyEmptyClass.self))
518 + if (isMarket == true) {
519 + vc.isMarket = true
520 + } else {
518 vc.couponSet = coupon?.couponset_data 521 vc.couponSet = coupon?.couponset_data
522 + }
523 +
519 self.navigationController?.pushViewController(vc, animated: true) 524 self.navigationController?.pushViewController(vc, animated: true)
520 525
521 // if (mapBtnVisible == true) { 526 // if (mapBtnVisible == true) {
......