Forgot to define variable
This commit is contained in:
parent
748bd05169
commit
6d9ea98901
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ func parseAuthr(creator []string) []string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseDescription(description []string) string {
|
func parseDescription(description []string) string {
|
||||||
cleanStr(strings.Join(description, ", "))
|
str := cleanStr(strings.Join(description, ", "))
|
||||||
exp, _ := regexp.Compile("<[^>]*>")
|
exp, _ := regexp.Compile("<[^>]*>")
|
||||||
str = exp.ReplaceAllString(str, "")
|
str = exp.ReplaceAllString(str, "")
|
||||||
return str
|
return str
|
||||||
|
|
Reference in a new issue