commit
3d7dc94c57
3
rss.go
3
rss.go
|
@ -102,6 +102,9 @@ func (this *Feed) readRss2(doc *xmlx.Document) (err error) {
|
||||||
if n = node.SelectNode(ns, "image"); n != nil {
|
if n = node.SelectNode(ns, "image"); n != nil {
|
||||||
ch.Image.Title = n.S(ns, "title")
|
ch.Image.Title = n.S(ns, "title")
|
||||||
ch.Image.Url = n.S(ns, "url")
|
ch.Image.Url = n.S(ns, "url")
|
||||||
|
if ch.Image.Url == "" {
|
||||||
|
ch.Image.Url = n.As(ns, "href")
|
||||||
|
}
|
||||||
ch.Image.Link = n.S(ns, "link")
|
ch.Image.Link = n.S(ns, "link")
|
||||||
ch.Image.Width = n.I(ns, "width")
|
ch.Image.Width = n.I(ns, "width")
|
||||||
ch.Image.Height = n.I(ns, "height")
|
ch.Image.Height = n.I(ns, "height")
|
||||||
|
|
Loading…
Reference in New Issue