TheRustyPickle / Chirp

A chat app built from scratch using GTK4 in Rust
MIT License
5 stars 3 forks source link

Update gui side's queue system #39

Closed TheRustyPickle closed 1 year ago

TheRustyPickle commented 1 year ago

Each userobject currently uses RefCell to keep track of the queue. In certain cases, it can cause double borrow_mut and crash it. It should be updated to ensure this doesn't happen. Perhaps make use of mutex?