diff --git a/Assets/Scripts/Sharing/VrAssetService.cs b/Assets/Scripts/Sharing/VrAssetService.cs index 9a265d93b..0bf9d3e8f 100644 --- a/Assets/Scripts/Sharing/VrAssetService.cs +++ b/Assets/Scripts/Sharing/VrAssetService.cs @@ -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; }