mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-12 06:53:24 +00: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);
|
||||
}
|
||||
|
||||
return result;
|
||||
return result.OrderBy(p => p.Name).ToList();
|
||||
}
|
||||
|
||||
private int CreateProvider(TProviderResource providerResource)
|
||||
|
|
Loading…
Add table
Reference in a new issue