[Fix] Calls, Spelling

This commit is contained in:
Alex Emmet 2026-05-03 15:02:15 +02:00
commit fc85e9377e
10 changed files with 246 additions and 177 deletions

View file

@ -64,6 +64,7 @@ impl AppConnection {
}
/// Get current ping
#[allow(unused)]
pub async fn get_ping(&self) -> i64 {
*self.ping.read().await
}
@ -304,6 +305,7 @@ impl AppConnection {
}
/// Close the connection
#[allow(unused)]
pub async fn close(&self) {
let mut is_open_guard = self.is_open.write().await;
if !*is_open_guard {