Merge pull request #126 from velour/nerdepeida

I'll see your double escaping, and raise you triple unescaping.
This commit is contained in:
Scott Kiesel 2019-01-19 09:03:39 -05:00 committed by GitHub
commit 31afe9b188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func (p *NerdepediaPlugin) Message(message msg.Message) bool {
if description == "" {
index := strings.Index(line, descriptionPrefix)
if index >= 0 {
description = html.UnescapeString(strings.TrimSuffix(strings.TrimPrefix(line, descriptionPrefix), closingTagSuffix))
description = html.UnescapeString(html.UnescapeString(strings.TrimSuffix(strings.TrimPrefix(line, descriptionPrefix), closingTagSuffix)))
}
}
if link == "" {