mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-02-04 22:11:43 +01:00
Fixed: Send Link element in nab response
This commit is contained in:
parent
b54c7e220e
commit
0a17b7e8ae
1 changed files with 1 additions and 0 deletions
|
|
@ -80,6 +80,7 @@ from r in Releases
|
|||
r.InfoUrl == null ? null : new XElement("comments", r.InfoUrl),
|
||||
r.PublishDate == DateTime.MinValue ? new XElement("pubDate", XmlDateFormat(DateTime.Now)) : new XElement("pubDate", XmlDateFormat(r.PublishDate)),
|
||||
new XElement("size", r.Size),
|
||||
new XElement("link", r.DownloadUrl ?? t.MagnetUrl ?? string.Empty),
|
||||
r.Categories == null ? null : from c in r.Categories select new XElement("category", c.Id),
|
||||
new XElement(
|
||||
"enclosure",
|
||||
|
|
|
|||
Loading…
Reference in a new issue