aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-lore
diff options
context:
space:
mode:
Diffstat (limited to 'tools/syz-lore')
-rw-r--r--tools/syz-lore/query_lkml.go11
1 files changed, 1 insertions, 10 deletions
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
-}