From 1152e8ef1c100f58788682e78f2f2a8746b45883 Mon Sep 17 00:00:00 2001 From: "Amir.H Khademi" Date: Mon, 1 Apr 2024 13:16:26 +0330 Subject: [PATCH] fix redirect payment --- NetinaShop.Api/Controller/PaymentController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NetinaShop.Api/Controller/PaymentController.cs b/NetinaShop.Api/Controller/PaymentController.cs index 4099936..015d893 100644 --- a/NetinaShop.Api/Controller/PaymentController.cs +++ b/NetinaShop.Api/Controller/PaymentController.cs @@ -41,11 +41,11 @@ public class PaymentController : ICarterModule if (Status == "OK") { var result = await paymentService.VerifyPaymentAsync(authority: Authority, cancellationToken); - return TypedResults.Redirect($"https://vesmook.com/purchase-callback?refid={result.Item1}&paymentStatus=true&factorNumber={result.Item2}", true); + return TypedResults.Redirect($"https://vesmeh.com/purchase-callback?refid={result.Item1}&paymentStatus=true&factorNumber={result.Item2}", true); } else { - return TypedResults.Redirect($"https://vesmook.com/purchase-callback?refid=0&paymentStatus=false&factorNumber=0", true); + return TypedResults.Redirect($"https://vesmeh.com/purchase-callback?refid=0&paymentStatus=false&factorNumber=0", true); } } catch (Exception e)