From f41b6e5ec431c88bc1d94e4832d8ba49ddc42004 Mon Sep 17 00:00:00 2001 From: "Emma [it/its]@Rory&" Date: Tue, 5 Mar 2024 11:19:52 +0100 Subject: HomeserverEmulator work --- .../Controllers/HEDebug/HEDebugController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tests/LibMatrix.HomeserverEmulator/Controllers/HEDebug/HEDebugController.cs') diff --git a/Tests/LibMatrix.HomeserverEmulator/Controllers/HEDebug/HEDebugController.cs b/Tests/LibMatrix.HomeserverEmulator/Controllers/HEDebug/HEDebugController.cs index 0c4d8bd..9e0c17c 100644 --- a/Tests/LibMatrix.HomeserverEmulator/Controllers/HEDebug/HEDebugController.cs +++ b/Tests/LibMatrix.HomeserverEmulator/Controllers/HEDebug/HEDebugController.cs @@ -8,7 +8,7 @@ namespace LibMatrix.HomeserverEmulator.Controllers; public class HEDebugController(ILogger logger, UserStore userStore, RoomStore roomStore) : ControllerBase { [HttpGet("users")] public async Task> GetUsers() { - return userStore._users; + return userStore._users.ToList(); } [HttpGet("rooms")] -- cgit 1.4.1