From d8dc0facdffaca0c57fefeffa37309191fd32b7e Mon Sep 17 00:00:00 2001 From: gnuxie Date: Sat, 22 Mar 2025 13:46:05 +0000 Subject: [PATCH] Clarify error in takedown command while fetching room details. --- src/commands/Takedown.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/commands/Takedown.tsx b/src/commands/Takedown.tsx index 3f6c9ef8..1c897aa4 100644 --- a/src/commands/Takedown.tsx +++ b/src/commands/Takedown.tsx @@ -80,10 +80,12 @@ function handleRoomDiscovery( ); } if (detailsResult.ok.creator === undefined) { - log.debug("Broken details", detailsResult.ok); - return ResultError.Result( - `No creator was provided so we cannot store the details for this room ${roomID}` + log.warn( + "No creator was provided in the details for the room, so we cannot store them", + roomID, + detailsResult.ok ); + return Ok(undefined); } return await store.storeRoomIdentification({ roomID,