diff --git a/podCatch/podcatch.go b/podCatch/podcatch.go index c67bfcd..47eb77b 100644 --- a/podCatch/podcatch.go +++ b/podCatch/podcatch.go @@ -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) }