Feature: User auth #15

Merged
scott merged 29 commits from scott/kalkutago:feature/user-auth into main 2023-08-27 12:00:57 +00:00
Showing only changes of commit 033f2a561b - Show all commits

View file

@ -95,6 +95,7 @@ impl Update {
if receiver_count > 0 {
trace!(receiver_count = receiver_count, update = as_serde!(self); "sending update");
let count = tx.send(self.clone())?;
scott marked this conversation as resolved
Review

use count here

use count here
trace!(count = count; "update sent");
} else {
trace!("no update receivers, skipping message");
}