mirror of https://github.com/velour/catbase.git
I'll see your double escaping, and raise you triple unescaping. But seriously, double unescaping.
This commit is contained in:
parent
3aaed538dd
commit
265fe441b4
|
@ -65,7 +65,7 @@ func (p *NerdepediaPlugin) Message(message msg.Message) bool {
|
||||||
if description == "" {
|
if description == "" {
|
||||||
index := strings.Index(line, descriptionPrefix)
|
index := strings.Index(line, descriptionPrefix)
|
||||||
if index >= 0 {
|
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 == "" {
|
if link == "" {
|
||||||
|
|
Loading…
Reference in New Issue