From f631b7519cc60f1940a035705c2a02dbbb026755 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Tue, 21 May 2024 14:45:25 +0200 Subject: [PATCH] feat: better sounding error message --- MyMcRealms/Controllers/WorldsController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MyMcRealms/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs index d89e6e0..7bb7044 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -90,7 +90,8 @@ namespace MyMcRealms.Controllers var api = new MyMcAPI.Wrapper(world.OwnersToken); var whitelist = await api.GetWhitelist(); - if (whitelist == null) return BadRequest($"Cannot GET /whitelist for world {id}"); + if (whitelist == null) return BadRequest($"Cannot get data for world {id}"); + string worldOwnerName = world.Ops.ToArray().Length == 0 ? "Owner" : world.Ops[0].Name; string worldOwnerUuid = world.Ops.ToArray().Length == 0 ? "069a79f444e94726a5befca90e38aaf5" : world.Ops[0].Uuid; string worldName = world.Ops.ToArray().Length == 0 ? world.ServerName : $"{world.Ops[0].Name}'s server";