Merge pull request #4807 from 21pages/fix

fix connection note
This commit is contained in:
RustDesk
2023-07-01 10:10:34 +08:00
committed by GitHub
5 changed files with 12 additions and 11 deletions

View File

@@ -342,8 +342,8 @@ class Header: Reactor.Component {
<textarea .outline-focus spellcheck="false" name="text" novalue="input note here" style="overflow: scroll-indicator; width:*; height: 140px; font-size: 1.2em; padding: 0.5em;">{self.conn_note}</textarea>
</div>, "", function(res=null) {
if (!res) return;
if (!res.text) return;
self.conn_note = res.text;
if (res.text == null || res.text == undefined) return;
self.conn_note = res.text ?? "";
handler.send_note(res.text);
}, 280);
}

View File

@@ -1348,6 +1348,6 @@ async fn start_one_port_forward<T: InvokeUiSession>(
#[tokio::main(flavor = "current_thread")]
async fn send_note(url: String, id: String, conn_id: i32, note: String) {
let body = serde_json::json!({ "id": id, "Id": conn_id, "note": note });
let body = serde_json::json!({ "id": id, "conn_id": conn_id, "note": note });
allow_err!(crate::post_request(url, body.to_string(), "").await);
}