mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
Torznap feed: always set pubDate
This commit is contained in:
parent
ae8f8f7ccd
commit
134fd3f4cf
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ namespace Jackett.Models
|
|||
new XElement("title", r.Title),
|
||||
new XElement("guid", r.Guid),
|
||||
r.Comments == null ? null : new XElement("comments", r.Comments.ToString()),
|
||||
r.PublishDate == DateTime.MinValue ? null : new XElement("pubDate", xmlDateFormat(r.PublishDate)),
|
||||
r.PublishDate == DateTime.MinValue ? new XElement("pubDate", DateTime.Now) : new XElement("pubDate", xmlDateFormat(r.PublishDate)),
|
||||
r.Size == null ? null : new XElement("size", r.Size),
|
||||
r.Files == null ? null : new XElement("files", r.Files),
|
||||
r.Grabs == null ? null : new XElement("grabs", r.Grabs),
|
||||
|
|
Loading…
Reference in a new issue