From ec77d7cc1b8bc1c3058c2bfdcfcccb781f338f20 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 11 Apr 2023 16:29:17 +0200 Subject: pkg/email: expose OwnEmail flag We anyway already extract this information, there's no sense in extracting it again in other places. --- tools/syz-lore/query_lkml.go | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'tools/syz-lore') diff --git a/tools/syz-lore/query_lkml.go b/tools/syz-lore/query_lkml.go index 61cb848f5..4b59b6393 100644 --- a/tools/syz-lore/query_lkml.go +++ b/tools/syz-lore/query_lkml.go @@ -52,7 +52,7 @@ func main() { for _, m := range thread.Messages { messages = append(messages, dashapi.DiscussionMessage{ ID: m.MessageID, - External: !emailInList(emails, m.Author), + External: !m.OwnEmail, Time: m.Date, }) } @@ -151,12 +151,3 @@ func processArchives(dir string, emails, domains []string) []*lore.Thread { log.Printf("%d threads are related to syzbot", len(ret)) return ret } - -func emailInList(list []string, email string) bool { - for _, str := range list { - if str == email { - return true - } - } - return false -} -- cgit mrf-deployment