fix(modrinth): fix sorting

This commit is contained in:
DioEgizio
2022-06-24 10:47:02 +02:00
committed by GitHub
parent 821edf0f51
commit 04e8780dd0

View File

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