mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -29,7 +29,7 @@ namespace Jackett.Common.Models
|
|||||||
var newCat = new TorznabCategory(c.ID, c.Name);
|
var newCat = new TorznabCategory(c.ID, c.Name);
|
||||||
newCat.SubCategories.AddRange(sortedSubCats);
|
newCat.SubCategories.AddRange(sortedSubCats);
|
||||||
return newCat;
|
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;
|
return sortedTree;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user