Removed some debugging stuff.

This commit is contained in:
mdosch 2019-05-26 22:30:34 +02:00
parent 576c259d60
commit 30d53424cb

View file

@ -228,8 +228,6 @@ func getArticles(feedURL string, max int, noExcerpt bool) (string, error) {
description = "" description = ""
// Fill article description/content with the fragments separated by one newline. // Fill article description/content with the fragments separated by one newline.
for _, line := range fragments { for _, line := range fragments {
l := len(line)
println("Fragment: ", line, l)
// Only if the only content is not "> ", thank you reddit. // Only if the only content is not "> ", thank you reddit.
if line != "> " { if line != "> " {
description = description + line + "\n" description = description + line + "\n"