summaryrefslogtreecommitdiffstats
path: root/app/web_hub.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/web_hub.go')
-rw-r--r--app/web_hub.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/web_hub.go b/app/web_hub.go
index eae481e17..5b7e3623e 100644
--- a/app/web_hub.go
+++ b/app/web_hub.go
@@ -90,14 +90,6 @@ func HubUnregister(webConn *WebConn) {
func Publish(message *model.WebSocketEvent) {
- if SkipTypingMessage(message) {
- if metrics := einterfaces.GetMetricsInterface(); metrics != nil {
- metrics.IncrementWebsocketEvent(message.Event + "_skipped")
- }
-
- return
- }
-
if metrics := einterfaces.GetMetricsInterface(); metrics != nil {
metrics.IncrementWebsocketEvent(message.Event)
}
@@ -337,14 +329,3 @@ func (h *Hub) Start() {
go doRecoverableStart()
}
-
-func SkipTypingMessage(msg *model.WebSocketEvent) bool {
- // Only broadcast typing messages if less than 1K people in channel
- if msg.Event == model.WEBSOCKET_EVENT_TYPING {
- if Srv.Store.Channel().GetMemberCountFromCache(msg.Broadcast.ChannelId) > *utils.Cfg.TeamSettings.MaxNotificationsPerChannel {
- return true
- }
- }
-
- return false
-}