Index: Radio.cs =================================================================== --- Radio.cs (revision 27860) +++ Radio.cs (working copy) @@ -694,13 +694,13 @@ { if (bAscending) { - if (channel1.SortOrder > channel2.SortOrder) + if (channel1.CurrentGroup.SortOrder > channel2.CurrentGroup.SortOrder) { return 1; } return -1; } - if (channel2.SortOrder > channel1.SortOrder) + if (channel2.CurrentGroup.SortOrder > channel1.CurrentGroup.SortOrder) { return 1; }