mirror of https://github.com/pikami/rss-dl.git
Handle feed items without images
This commit is contained in:
parent
881f1aec48
commit
1d0fbff006
12
main.go
12
main.go
|
@ -47,11 +47,13 @@ func main() {
|
|||
itemDetailsPath,
|
||||
GrabFeedItemJSON(item))
|
||||
|
||||
itemImagePath := itemOutputDir + "/image" + RemoveGetParams(filepath.Ext(item.Image.URL))
|
||||
LogInfo("Downloading image to " + itemImagePath)
|
||||
DownloadFile(
|
||||
itemImagePath,
|
||||
item.Image.URL)
|
||||
if item.Image != nil {
|
||||
itemImagePath := itemOutputDir + "/image" + RemoveGetParams(filepath.Ext(item.Image.URL))
|
||||
LogInfo("Downloading image to " + itemImagePath)
|
||||
DownloadFile(
|
||||
itemImagePath,
|
||||
item.Image.URL)
|
||||
}
|
||||
|
||||
for _, enclosure := range item.Enclosures {
|
||||
filename := RemoveGetParams(filepath.Base(enclosure.URL))
|
||||
|
|
Loading…
Reference in New Issue