fix: Sort ServerEventType::ChatRequestResponse event alphabetically
All checks were successful
DCO checker / DCO checker (pull_request) Successful in 7s
Rust CI / Rust CI (pull_request) Successful in 4m43s

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb 2024-07-17 19:38:13 +03:00
parent 48acab2519
commit c13d0fc59b
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F

View file

@ -56,7 +56,7 @@ pub enum ServerEventType {
/// New chat request from someone /// New chat request from someone
ChatRequest { from: PublicKey }, ChatRequest { from: PublicKey },
/// New chat request response from someone /// New chat request response from someone
ChatRequestResponse { from: PublicKey, accepted: bool }, ChatRequestResponse { accepted: bool, from: PublicKey },
/// Error event /// Error event
Error { Error {
name: &'static str, name: &'static str,