mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +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 @@ private List<TProviderResource> GetAll()
|
|||
result.Add(providerResource);
|
||||
}
|
||||
|
||||
return result;
|
||||
return result.OrderBy(p => p.Name).ToList();
|
||||
}
|
||||
|
||||
private int CreateProvider(TProviderResource providerResource)
|
||||
|
|
Loading…
Reference in a new issue