add oa notification

This commit is contained in:
Gordon 2022-03-28 15:55:55 +08:00
parent 13c29d2c1e
commit d1c0205d77
2 changed files with 7 additions and 0 deletions

View File

@ -64,6 +64,7 @@ const (
ConversationNotNotification = 1308
ConversationDefault = 0
UserNotificationEnd = 1399
OANotification = 1400
GroupNotificationBegin = 1500
@ -95,6 +96,8 @@ const (
//SessionType
SingleChatType = 1
GroupChatType = 2
NotificationChatType = 4
//token
NormalToken = 0
InValidToken = 1

View File

@ -8,4 +8,8 @@ sub_s2=${sub_s1//,/ }
sub_s3=${sub_s2#*[}
sub_s4=${sub_s3%]*}
ports_array=$sub_s4
}
remove_space(){
value=$*
result=`echo $value | sed 's/ //g'`
}