feat(#1135): transient wake for matrix mcp events - bypass broker sqlite

This commit is contained in:
damocles 2026-06-03 12:35:21 +02:00 committed by mara
commit a789c096e7

View file

@ -40,6 +40,7 @@ pub async fn send_wake(socket: &Path, body: impl AsRef<str>) -> Result<()> {
"cmd": "wake",
"from": "matrix",
"body": body.as_ref(),
"transient": true,
});
let line = format!("{}\n", serde_json::to_string(&payload)?);
let stream = UnixStream::connect(socket)