Merge pull request #837 from DioEgizio/fix-sort-mr

This commit is contained in:
timoreo22
2022-06-30 08:24:51 +02:00
committed by GitHub

View File

@@ -160,15 +160,15 @@ static auto sortFromIndex(int index) -> QString
{ {
switch(index){ switch(index){
default: default:
case 1: case 0:
return "relevance"; return "relevance";
case 2: case 1:
return "downloads"; return "downloads";
case 3: case 2:
return "follows"; return "follows";
case 4: case 3:
return "newest"; return "newest";
case 5: case 4:
return "updated"; return "updated";
} }