🐛 Trying to fix discovery

This commit is contained in:
2025-08-09 23:22:14 +08:00
parent c3f5ed881f
commit 78cec27ef0
3 changed files with 10 additions and 11 deletions

View File

@@ -13,6 +13,6 @@ public class DiscoveryController(DiscoveryService discoveryService) : Controller
[FromQuery] int offset = 0
)
{
return discoveryService.GetPublicRealmsAsync(query, take, offset);
return discoveryService.GetCommunityRealmAsync(query, take, offset);
}
}