George Moschovitis

Results 41 comments of George Moschovitis

FWIW my use case is to run a single job (e.g. from Cron) to send a specific message to a room (in a fire-and-forget fashion), so both of the above...

I tried again, still no success: ```rust use anyhow::Result; use matrix_sdk::{api::r0::sync::sync_events, identifiers::RoomId, ClientConfig}; use matrix_sdk::{Client, LoopCtrl, SyncSettings}; use std::convert::TryFrom; use std::time::Duration; use url::Url; const DEFAULT_HOMESERVER_URL: &str = "https://matrix.org"; const ROOM_ID:...

Another issue, how can I use the client within the callback? So that I can e.g. send messages to a Room? Seems like `sync_with_callback` needs `async move || ...` which...

Thank you! Using the following 'hack' (I have seen it in other examples) I managed to send messages to an encrypted channel: ```rust let client_ref = &client; client .sync_with_callback(sync_settings, |_response|...

Yeah! That did the trick, master works! Thank you :-D

Actually, it didn't work. I can post messages to an encrypted room, read back my messages, but still cannot read messages from other room participants. I guess I will just...

Really surprising that `deployctl` does not pick `deno.json`. I hope this will get fixed soon.

That would be useful.

this is a showstopper for appengine deployment!