fix isEvent
This commit is contained in:
parent
58a5ed8a3f
commit
66218f4616
@ -98,6 +98,9 @@ func IsMetaMessage(msg *message.Message) bool {
|
||||
}
|
||||
|
||||
func IsEventDelivery(msg *message.Message) bool {
|
||||
if IsMetaMessage(msg) {
|
||||
return false
|
||||
}
|
||||
if msg.Data != nil {
|
||||
return true
|
||||
}
|
||||
@ -105,6 +108,9 @@ func IsEventDelivery(msg *message.Message) bool {
|
||||
}
|
||||
|
||||
func IsEventPublish(msg *message.Message) bool {
|
||||
if IsMetaMessage(msg) {
|
||||
return false
|
||||
}
|
||||
return !IsEventDelivery(msg)
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,6 @@ func (w *Websocket) readWorker() error {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
w.subsMu2.Unlock()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user