From e809a2bbc641745e2bc3afcacda1b8177e3879db Mon Sep 17 00:00:00 2001 From: Alexander Zavorotynskiy Date: Thu, 1 Jun 2023 15:04:20 +0200 Subject: [PATCH] feat(backend): added tabs support to devtools mob files --- backend/cmd/sink/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/cmd/sink/main.go b/backend/cmd/sink/main.go index e9cf1367a..bb04c13cf 100644 --- a/backend/cmd/sink/main.go +++ b/backend/cmd/sink/main.go @@ -151,7 +151,7 @@ func main() { } // Add message to dev buffer - if !messages.IsDOMType(msg.TypeID()) || msg.TypeID() == messages.MsgTimestamp { + if !messages.IsDOMType(msg.TypeID()) || msg.TypeID() == messages.MsgTimestamp || msg.TypeID() == messages.MsgTabData { // Write message index n, err = devBuffer.Write(messageIndex) if err != nil {