mirror of
https://github.com/Jackett/Jackett
synced 2025-03-06 11:48:49 +00:00
parent
f17b9dbc21
commit
e340813291
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ namespace Jackett.Common.Models
|
|||
var newCat = new TorznabCategory(c.ID, c.Name);
|
||||
newCat.SubCategories.AddRange(sortedSubCats);
|
||||
return newCat;
|
||||
}).OrderBy(x => x.ID > 100000 ? "zzz" + x.Name : x.ID.ToString()).ToList();
|
||||
}).OrderBy(x => x.ID >= 100000 ? "zzz" + x.Name : x.ID.ToString()).ToList();
|
||||
|
||||
return sortedTree;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue