Skip to content

Commit 86d68e7

Browse files
committed
threads: fix other replies not rendering in presence of one muted
Signed-off-by: kernelkind <[email protected]>
1 parent 589a8a9 commit 86d68e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/notedeck_columns/src/ui/thread.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fn show_notes(
177177
let selected_note_index = thread_notes.selected_index;
178178
let notes = &thread_notes.notes;
179179

180-
list.ui_custom_layout(ui, notes.len(), |ui, cur_index| 's: {
180+
list.ui_custom_layout(ui, notes.len(), |ui, cur_index| {
181181
let note = &notes[cur_index];
182182

183183
// should we mute the thread? we might not have it!
@@ -191,7 +191,7 @@ fn show_notes(
191191
.is_some_and(|root_id| is_muted(&note.note, root_id.bytes()));
192192

193193
if muted {
194-
break 's 0;
194+
return 1;
195195
}
196196

197197
let resp = note.show(note_context, zapping_acc, flags, jobs, ui);

0 commit comments

Comments
 (0)