adjustment to not print description
This commit is contained in:
parent
58a1329485
commit
28ecda8c6c
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ func markAsErrored(item Item) {
|
|||
log.Println(err)
|
||||
}
|
||||
defer file.Close()
|
||||
content := fmt.Sprintf("%s\r\n%s",item.Title, item.Media.URL)
|
||||
content := fmt.Sprintf("%s\r\n%s\r\n",item.Title, item.Media.URL)
|
||||
if _, err := file.WriteString(content); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue