mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-29 19:28:27 -07:00
Order provider based settings by name
This commit is contained in:
parent
4eff8d88d1
commit
702b4429ac
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ namespace NzbDrone.Api
|
||||||
result.Add(providerResource);
|
result.Add(providerResource);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result.OrderBy(p => p.Name).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
private int CreateProvider(TProviderResource providerResource)
|
private int CreateProvider(TProviderResource providerResource)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue