mirror of https://github.com/velour/catbase.git
Merge pull request #173 from velour/eaburns-patch-1
Don't show scores in tl;dr
This commit is contained in:
commit
e82d84afeb
|
@ -109,7 +109,7 @@ func (p *TLDRPlugin) message(kind bot.Kind, message msg.Message, args ...interfa
|
|||
}
|
||||
response += fmt.Sprintf("\n*Topic #%d: %s*\n", topic, bestTopic)
|
||||
for i := range bestDocs[topic] {
|
||||
response += fmt.Sprintf("<%s>%s [%f]\n", bestDocs[topic][i].user, bestDocs[topic][i].body, bestScores[topic][i])
|
||||
response += fmt.Sprintf("<%s>%s\n", bestDocs[topic][i].user, bestDocs[topic][i].body)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue