|
|
|
@ -94,7 +94,12 @@ namespace NzbDrone.Core.IndexerSearch
|
|
|
|
|
GetNabElement("files", r.Files, protocol),
|
|
|
|
|
GetNabElement("grabs", r.Grabs, protocol),
|
|
|
|
|
GetNabElement("peers", t.Peers, protocol),
|
|
|
|
|
GetNabElement("infohash", RemoveInvalidXMLChars(r.Guid), protocol)))));
|
|
|
|
|
GetNabElement("infohash", RemoveInvalidXMLChars(r.Guid), protocol),
|
|
|
|
|
GetNabElement("magneturl", t.MagnetUrl, protocol),
|
|
|
|
|
GetNabElement("minimumratio", t.MinimumRatio, protocol),
|
|
|
|
|
GetNabElement("minimumseedtime", t.MinimumSeedTime, protocol),
|
|
|
|
|
GetNabElement("downloadvolumefactor", t.DownloadVolumeFactor, protocol),
|
|
|
|
|
GetNabElement("uploadvolumefactor", t.UploadVolumeFactor, protocol)))));
|
|
|
|
|
|
|
|
|
|
return xdoc.Declaration + Environment.NewLine + xdoc;
|
|
|
|
|
}
|
|
|
|
|