From 7ac8436a62ad1687eeeb732236fd68e45cb7bbdc Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期二, 25 三月 2025 18:38:09 +0800 Subject: [PATCH] fix: bug --- LifePayment/LifePayment.Application/LifePay/LifePayService.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LifePayment/LifePayment.Application/LifePay/LifePayService.cs b/LifePayment/LifePayment.Application/LifePay/LifePayService.cs index 8b109ae..2606e26 100644 --- a/LifePayment/LifePayment.Application/LifePay/LifePayService.cs +++ b/LifePayment/LifePayment.Application/LifePay/LifePayService.cs @@ -1570,9 +1570,9 @@ if (input.LifePayType == LifePayOrderTypeEnum.璇濊垂璁㈠崟) { var extraProperties = JsonConvert.DeserializeObject<Model_UserAccountExtraProperties>(input.ExtraProperties); - if (!string.IsNullOrEmpty(extraProperties.Name) && extraProperties.Phone == user.PhoneNumber) + if (!string.IsNullOrEmpty(extraProperties.Name)) { - user.Name = extraProperties.Name; + user.Name = extraProperties.Phone == user.PhoneNumber ? extraProperties.Name : string.Empty; } } -- Gitblit v1.9.1