Sender | Message | Time |
---|---|---|
20 Sep 2024 | ||
Paarth Shah - Github Maintainer changed the room topic to "The nio matrix python library | Latest stable release 0.25.1 | Latest release candidate 0.25.2rc1 | https://pypi.org/project/matrix-nio/ | Documentation: https://matrix-nio.readthedocs.io/en/stable/" from "The nio matrix python library | Latest stable release 0.25.1 https://pypi.org/project/matrix-nio/ | Documentation: https://matrix-nio.readthedocs.io/en/stable/". | 20:49:25 | |
Paarth Shah - Github Maintainer | In reply to @nex:nexy7574.co.ukhttps://pypi.org/project/matrix-nio/0.25.2rc1/ | 20:49:35 |
Paarth Shah - Github Maintainer | And no problem! I've been meaning to do that for a hot second lol | 20:49:54 |
Paarth Shah - Github Maintainer | * And no problem! I've been meaning to do that for a hot second lol; this will probably be mostly identical to the actual 0.25.2 once I get around to those release notes | 20:50:30 |
nex (she/it) | awesome, thank you! | 21:55:22 |
Fabian changed their display name from Fabian to Fabian ( @ matrixconf ). | 22:27:57 | |
21 Sep 2024 | ||
@h5lbbz66i62qimho9kxh:matrix.org joined the room. | 08:30:37 | |
@h5lbbz66i62qimho9kxh:matrix.org left the room. | 08:31:04 | |
nex (she/it) changed their profile picture. | 21:43:28 | |
ifiguero | I have a question regarding the This open some scenario where too many events might happen and the server reply might just be truncated, and your bot might miss some events due to that. | 22:29:17 |
ifiguero | Download Screenshot at 2024-09-19 17-33-16.png | 22:29:49 |
ifiguero | Should it be possible to detect when the returned batch generated a gap with your previous sync and request the trailing events while keep fetching the original sync? | 22:31:10 |
ifiguero | I'm trying to device a way to handle it appropriately, but it feels like the homeserver endpoint is broken and can't be used for this porpuse. | 22:34:55 |
22 Sep 2024 | ||
anton.molyboha | Download image.png | 08:00:04 |
anton.molyboha | Yes, you can check the (the screenshot is from https://spec.matrix.org/v1.11/client-server-api/#get_matrixclientv3sync) | 08:00:53 |
anton.molyboha | Another approach is to use AsynClient.room_messages to continuously poll for new messages in a room. | 08:06:16 |
anton.molyboha | * Another approach is to use AsyncClient.room_messages to continuously poll for new messages in a room. | 08:06:30 |
anton.molyboha | With both approaches you don't have automatic decryption of messages if you are in an encrypted room. | 08:26:05 |
anton.molyboha | Also, sync and room_messages may return messages in different order. | 08:30:01 |
nex (she/it) | Is there a way to fetch power-levels on demand? for whatever reason, if I have store_sync_tokens set to True in my AsyncClientConfig, room data is entirely unpopulated on each restart, including users and their consequent power levels | 11:35:42 |
nex (she/it) | Download image.png | 11:38:34 |
ifiguero | In reply to @anton.molyboha:matrix.orgThe prev_batch is always sent to the sync endpoint. And it you do the math, the only way that you get a gap if you send the since is if the response returns the the newest events. | 13:18:45 |
ifiguero | Download 1000053300.jpg | 13:19:01 |
ifiguero | I'm unsure how you should call for events in the gap. But I assume you require a custom implementation of the sync loop | 13:21:19 |
ifiguero | I can handle events out of order, or even repeated if that is required. That is not a problem. I'm just trying to fill the gaps. | 13:23:05 |
26 Sep 2024 | ||
wirdo12398 joined the room. | 06:11:26 | |
wirdo12398 | Hello I'm trying to run the following example: https://matrix-nio.readthedocs.io/en/latest/examples.html#manual-encryption-key-verification I have the issue when the message is sent, it is shown in the receiver client that this message is not verified by user (Actually it was commented in the code that this part of the example is not done and to be done by the reader -me). I tried many approaches, I tried to implement the verification by emoji (using another example) but with no success. Can anyone please put me on the right way to do it | 06:23:08 |
nex (she/it) | https://github.com/matrix-nio/matrix-nio/issues/512 is this related to your issue? | 06:26:24 |
wirdo12398 | Yeah thank you, this workaround fixed the verify_with_emoji example. Although the issue is still there, I verified the session and I can see it verified in my sessions, but when sending message to another user, it shows a warning with Encrypted by unknown or deleted device . Do you know anything about this? I don't have any clue 😥 | 07:26:53 |
wirdo12398 | * Yeah thank you, this workaround fixed the verify_with_emoji example. Although the issue is still there, I verified the session and I can see it verified in my sessions, but when sending message to another user, it shows a warning with Encrypted by unknown or deleted device . Do you know anything about this? I don't have any clue 😥What I did is that I ran the 'verify with emoji' example, and verified the session using the emojis, then I took the credentials.json content and replaced those created by 'manual encrypted verify' example (to use the same session to send the encrypted message), but with no luck, I can see that I used the same session (last active time changes when the message i sent) but the message shows warning that this is unknown or deleted device | 07:29:38 |