Merge pull request #5623 from 21pages/cm_file

add file log page to cm
This commit is contained in:
RustDesk
2023-09-07 20:33:00 +08:00
committed by GitHub
14 changed files with 519 additions and 39 deletions

View File

@@ -907,6 +907,10 @@ pub mod connection_manager {
let client_json = serde_json::to_string(&client).unwrap_or("".into());
self.push_event("update_voice_call_state", vec![("client", &client_json)]);
}
fn file_transfer_log(&self, log: String) {
self.push_event("cm_file_transfer_log", vec![("log", &log.to_string())]);
}
}
impl FlutterHandler {