diff --git a/Makefile b/Makefile index 3bc1ae0aa..82315d542 100644 --- a/Makefile +++ b/Makefile @@ -294,6 +294,7 @@ lint-fix: -and -not -name '*.pb.go' \ -and -not -name 'bindata*' \ -and -not -name 'migrations.go' \ + -and -not -name 'messenger_handlers.go' \ -and -not -wholename '*/vendor/*' \ -exec goimports \ -local 'github.com/ethereum/go-ethereum,github.com/status-im/status-go,github.com/status-im/markdown' \ diff --git a/protocol/messenger_linkpreview.go b/protocol/messenger_linkpreview.go index 64ade2a4d..9dcf15c2d 100644 --- a/protocol/messenger_linkpreview.go +++ b/protocol/messenger_linkpreview.go @@ -8,10 +8,11 @@ import ( "regexp" "strings" - "github.com/status-im/markdown" "go.uber.org/zap" "golang.org/x/net/publicsuffix" + "github.com/status-im/markdown" + "github.com/status-im/status-go/multiaccounts/settings" "github.com/status-im/status-go/protocol/common" )