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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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>
|
|
|
|