Skip to content

Commit

Permalink
MP v16.18.2.1 修复二级菜单按钮判断逻辑 #2638 感谢 @withsalt
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySu committed May 11, 2022
1 parent 0b1ca4e commit 0f3d11f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ and limitations under the License.
修改标识:Senparc - 20220503
修改描述:v16.18.1 添加 article_id 类型按钮
修改标识:Senparc - 20220511
修改描述:v16.18.2.1 修复二级菜单按钮判断逻辑
----------------------------------------------------------------*/

/*
Expand Down Expand Up @@ -366,7 +369,7 @@ private static void GetButtonGroup(List<MenuFull_RootButton> rootButtonList, But
type = subSubButton.type
});
}
if (subSubButton.type.Equals("SCANCODE_WAITMSG", StringComparison.OrdinalIgnoreCase))
else if (subSubButton.type.Equals("SCANCODE_WAITMSG", StringComparison.OrdinalIgnoreCase))
{
//扫码推事件且弹出“消息接收中”提示框
subButton.sub_button.Add(new SingleScancodeWaitmsgButton()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1</TargetFrameworks>
<Version>16.18.2</Version>
<Version>16.18.2.1</Version>
<AssemblyName>Senparc.Weixin.MP</AssemblyName>
<RootNamespace>Senparc.Weixin.MP</RootNamespace>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
Expand Down

0 comments on commit 0f3d11f

Please sign in to comment.