diff --git a/api/reddit/post.go b/api/reddit/post.go index ada20cb..7ea3715 100644 --- a/api/reddit/post.go +++ b/api/reddit/post.go @@ -2,6 +2,7 @@ package reddit import ( "fmt" + "html" "net/url" "path" "path/filepath" @@ -241,7 +242,7 @@ func (post *Post) GetAuthor() string { } func (post *Post) GetTitle() string { - return post.Data.Title + return html.UnescapeString(post.Data.Title) } func (post *Post) GetAuthorURL() string {