Skip to content

Commit

Permalink
Sort featured sketches by "best"
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Sep 15, 2024
1 parent 193bb31 commit 60e864c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Assets/Scripts/Sharing/VrAssetService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,10 @@ public AssetLister ListAssets(SketchSetType type)
errorMessage = "Failed to access your liked sketches.";
break;
case SketchSetType.Curated:
filteredUriPath = CombineQueryParams(kListAssetsUri, "format=TILT&curated=true&orderBy=NEWEST");
// Old way - newest curated
// filteredUriPath = CombineQueryParams(kListAssetsUri, "format=TILT&curated=true&orderBy=NEWEST");
// For now try just sorting by "best"
filteredUriPath = CombineQueryParams(kListAssetsUri, "format=TILT&orderBy=BEST");
errorMessage = "Failed to access featured sketches.";
break;
}
Expand Down

0 comments on commit 60e864c

Please sign in to comment.