diff --git a/src/service/admin/debug/debug_commands.rs b/src/service/admin/debug/debug_commands.rs index ef2fb3bd746ee92fca10d71652af50e312126e1a..c27dd38c38ea9b4dcba20d51a201664282b5a5d5 100644 --- a/src/service/admin/debug/debug_commands.rs +++ b/src/service/admin/debug/debug_commands.rs @@ -455,5 +455,14 @@ pub(crate) async fn resolve_true_destination( } pub(crate) fn memory_stats() -> RoomMessageEventContent { - RoomMessageEventContent::text_html("HTML only".to_owned(), crate::alloc::memory_stats()) + let html_body = crate::alloc::memory_stats(); + + if html_body.is_empty() { + return RoomMessageEventContent::text_plain("malloc stats are not supported on your compiled malloc."); + } + + RoomMessageEventContent::text_html( + "This command's output can only be viewed by clients that render HTML.".to_owned(), + html_body, + ) }