mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-04-04 00:21:12 +08:00
接入开放平台服务器停止推送的消息,及时断开连接
This commit is contained in:
parent
8538bc6abe
commit
7f77fdd889
2
blivedm
2
blivedm
@ -1 +1 @@
|
|||||||
Subproject commit 7f400e9c61d449a0e4212b47f45f0d1e4215157c
|
Subproject commit f9b6dc2f353f574dc7ae757be63ccacf6c93d06f
|
@ -214,7 +214,20 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
super.delayReconnect()
|
super.delayReconnect()
|
||||||
}
|
}
|
||||||
|
|
||||||
async dmCallback(command) {
|
interactionEndCallback(command) {
|
||||||
|
if (command.data.game_id !== this.gameId) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 服务器主动停止推送,可能是心跳超时,需要重新开启项目
|
||||||
|
console.error(`Open Live session end by server, gameId=${this.gameId}`)
|
||||||
|
this.addDebugMsg('Open Live session end by server')
|
||||||
|
|
||||||
|
this.gameId = null
|
||||||
|
this.needInitRoom = true
|
||||||
|
this.discardWebsocket()
|
||||||
|
}
|
||||||
|
|
||||||
|
dmCallback(command) {
|
||||||
let data = command.data
|
let data = command.data
|
||||||
|
|
||||||
let authorType
|
let authorType
|
||||||
@ -262,7 +275,7 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
this.msgHandler.onAddGift(data)
|
this.msgHandler.onAddGift(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
async guardCallback(command) {
|
guardCallback(command) {
|
||||||
let data = command.data
|
let data = command.data
|
||||||
data = new chatModels.AddMemberMsg({
|
data = new chatModels.AddMemberMsg({
|
||||||
id: data.msg_id,
|
id: data.msg_id,
|
||||||
@ -298,6 +311,7 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const CMD_CALLBACK_MAP = {
|
const CMD_CALLBACK_MAP = {
|
||||||
|
LIVE_OPEN_PLATFORM_INTERACTION_END: ChatClientDirectOpenLive.prototype.interactionEndCallback,
|
||||||
LIVE_OPEN_PLATFORM_DM: ChatClientDirectOpenLive.prototype.dmCallback,
|
LIVE_OPEN_PLATFORM_DM: ChatClientDirectOpenLive.prototype.dmCallback,
|
||||||
LIVE_OPEN_PLATFORM_SEND_GIFT: ChatClientDirectOpenLive.prototype.sendGiftCallback,
|
LIVE_OPEN_PLATFORM_SEND_GIFT: ChatClientDirectOpenLive.prototype.sendGiftCallback,
|
||||||
LIVE_OPEN_PLATFORM_GUARD: ChatClientDirectOpenLive.prototype.guardCallback,
|
LIVE_OPEN_PLATFORM_GUARD: ChatClientDirectOpenLive.prototype.guardCallback,
|
||||||
|
Loading…
Reference in New Issue
Block a user