mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-29 21:49:13 +02:00
logs: sort indexers by name in search results
This commit is contained in:
@@ -316,7 +316,7 @@ namespace Jackett.Server.Controllers
|
||||
ConfigureCacheResults(manualResult.Results);
|
||||
|
||||
// Log info
|
||||
var indexersName = string.Join(", ", manualResult.Indexers.Select(i => i.Name));
|
||||
var indexersName = string.Join(", ", manualResult.Indexers.Select(i => i.Name).OrderBy(n => n, StringComparer.OrdinalIgnoreCase));
|
||||
var cacheStr = tasks.Where(t => t.Status == TaskStatus.RanToCompletion).Any(t => t.Result.IsFromCache) ? " (from cache)" : "";
|
||||
|
||||
stopwatch.Stop();
|
||||
|
Reference in New Issue
Block a user