|
@@ -81,6 +81,8 @@ class HuaweiPushObject:
|
|
|
intent = 'intent://com.vivo.pushvideo/detail?#Intent;scheme=vpushscheme;launchFlags=0x10000000;S.uid={};S.event_type={};S.event_time={};end'.format(
|
|
|
uid, event_type, n_time)
|
|
|
android_notification = self.android_notification(msg_title, msg_text, intent)
|
|
|
+ # 微瞳消息类型暂时改为音视频通话
|
|
|
+ category = 'VOIP' if self.app_id == '108703647' else 'DEVICE_REMINDER'
|
|
|
# 安卓配置
|
|
|
android = messaging.AndroidConfig(
|
|
|
data=data,
|
|
@@ -89,7 +91,7 @@ class HuaweiPushObject:
|
|
|
ttl='10000s',
|
|
|
bi_tag='the_sample_bi_tag_for_receipt_service',
|
|
|
notification=android_notification,
|
|
|
- category='DEVICE_REMINDER'
|
|
|
+ category=category
|
|
|
)
|
|
|
|
|
|
message = messaging.Message(
|