From 0f2442566f97239e3fcc7b0051cd7523b2b41566 Mon Sep 17 00:00:00 2001 From: Electria <117232210+Elec3137@users.noreply.github.com> Date: Sat, 25 Oct 2025 12:59:06 -0700 Subject: [PATCH] Fix incorrect empty unreads window message (#541) --- src/windows/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/mod.rs b/src/windows/mod.rs index 690399b..2677e1f 100644 --- a/src/windows/mod.rs +++ b/src/windows/mod.rs @@ -641,7 +641,7 @@ impl WindowOps for IambWindow { state.set(items); List::new(store) - .empty_message("You do not have rooms or dms yet") + .empty_message("You do not have any unreads yet") .empty_alignment(Alignment::Center) .focus(focused) .render(area, buf, state);