zhengyiming
2025-03-26 48296ffbd708a35ed222b1350c62b2b98ae69876
fix: bug
1个文件已修改
4 ■■■■ 已修改文件
LifePayment/LifePayment.Application/LifePay/LifePayService.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application/LifePay/LifePayService.cs
@@ -1571,9 +1571,9 @@
        if (input.LifePayType == LifePayOrderTypeEnum.话费订单)
        {
            var extraProperties = JsonConvert.DeserializeObject<Model_UserAccountExtraProperties>(input.ExtraProperties);
            if (!string.IsNullOrEmpty(extraProperties.Name))
            if (!string.IsNullOrEmpty(extraProperties.Name) && extraProperties.Phone == user.PhoneNumber)
            {
                user.Name = extraProperties.Phone == user.PhoneNumber ? extraProperties.Name : string.Empty;
                user.Name = extraProperties.Name;
            }
        }