adds ne lines

This commit is contained in:
2022-02-07 16:07:35 -06:00
parent 18e3b0844c
commit aa0006f8e5
2 changed files with 4 additions and 1 deletions

View File

@ -66,6 +66,8 @@ func getData(urls []string) []byte {
log.Printf("[ERROR] Unable to get remote content from URL (%s): %v", u, err)
}
listData = append(listData, data...)
// add newline to the end of data, you know, for funzies
listData = append(listData, '\n')
}
return listData