Browse Source

Merge pull request #662 from colinin/Integrated-WxPusher

fix: Topic key error
pull/712/head
yx lin 3 years ago
committed by GitHub
parent
commit
2dce2115c0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      aspnet-core/modules/wx-pusher/LINGYUN.Abp.Notifications.WxPusher/LINGYUN/Abp/Notifications/NotificationDefinitionExtensions.cs

2
aspnet-core/modules/wx-pusher/LINGYUN.Abp.Notifications.WxPusher/LINGYUN/Abp/Notifications/NotificationDefinitionExtensions.cs

@ -7,7 +7,7 @@ public static class NotificationDefinitionExtensions
{ {
private const string Prefix = "wx-pusher:"; private const string Prefix = "wx-pusher:";
private const string ContentTypeKey = Prefix + "contentType"; private const string ContentTypeKey = Prefix + "contentType";
private const string TopicKey = Prefix + "contentType"; private const string TopicKey = Prefix + "topic";
/// <summary> /// <summary>
/// 设定消息内容类型 /// 设定消息内容类型
/// </summary> /// </summary>

Loading…
Cancel
Save