Skip to content

Commit

Permalink
Merge pull request #2872 from JeffreySu/Developer
Browse files Browse the repository at this point in the history
更新微信支付 Sample v6.6.2 #2869 感谢 @WXJDLM
  • Loading branch information
JeffreySu committed Jul 8, 2023
2 parents 586d10a + 9eaec48 commit e8e5f94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ public async Task<IActionResult> H5Pay(int productId, int hc)

WeixinTrace.SendCustomLog("H5Pay接口返回", result.ToJson());

if (!result.VerifySignSuccess == true)
if (result.VerifySignSuccess != true)
{
return Content("未通过验证,请检查数据有效性!");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Version>6.6.1</Version>
<Version>6.6.2</Version>
<UserSecretsId>35e58786-0820-4cde-b1ff-f4c6198d00f7</UserSecretsId>
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ public async Task<IActionResult> H5Pay(int productId, int hc)

WeixinTrace.SendCustomLog("H5Pay接口返回", result.ToJson());

if (!result.VerifySignSuccess == true)
if (result.VerifySignSuccess != true)
{
return Content("未通过验证,请检查数据有效性!");
}
Expand Down

0 comments on commit e8e5f94

Please sign in to comment.