.
Some checks failed
Rust / build (ubuntu-latest, stable) (push) Failing after 1m46s
Rust / build (ubuntu-latest, stable) (pull_request) Failing after 7m50s

This commit is contained in:
2026-02-19 14:24:17 +07:00
parent fad30a89f1
commit a0346fb242
2 changed files with 3 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ impl SendReport {
/// Returns true if the send was successful.
pub fn success(&self) -> bool {
if let Some(output) = self.output.as_ref() {
!output.success.is_empty()
!output.failed.is_empty()
} else {
false
}

View File

@@ -129,9 +129,10 @@ impl ChatPanel {
// Define all functions that will run after the current cycle
cx.defer_in(window, |this, window, cx| {
this.subscribe_room_events(window, cx);
this.connect(window, cx);
this.handle_notifications(cx);
this.subscribe_room_events(window, cx);
this.get_messages(window, cx);
});