mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Sort limits in IndexerCapabilities
This commit is contained in:
parent
d21debe77f
commit
ef0f8e25fd
1 changed files with 3 additions and 3 deletions
|
@ -455,10 +455,10 @@ namespace NzbDrone.Core.Indexers
|
|||
new XElement("caps",
|
||||
new XElement("server",
|
||||
new XAttribute("title", "Prowlarr")),
|
||||
LimitsMax != null || LimitsDefault != null ?
|
||||
LimitsDefault != null || LimitsMax != null ?
|
||||
new XElement("limits",
|
||||
LimitsMax != null ? new XAttribute("max", LimitsMax) : null,
|
||||
LimitsDefault != null ? new XAttribute("default", LimitsDefault) : null)
|
||||
LimitsDefault != null ? new XAttribute("default", LimitsDefault) : null,
|
||||
LimitsMax != null ? new XAttribute("max", LimitsMax) : null)
|
||||
: null,
|
||||
new XElement("searching",
|
||||
new XElement("search",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue