Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Group decryption fails due PNI pending member #328

Closed
hrdl-github opened this issue Oct 12, 2024 · 1 comment · Fixed by #329
Closed

Group decryption fails due PNI pending member #328

hrdl-github opened this issue Oct 12, 2024 · 1 comment · Fixed by #329

Comments

@hrdl-github
Copy link
Contributor

Background: there's a single group that did not show up in gurk until I filtered out errors in

let pending_members = group
.pending_members
.into_iter()
.map(|m| self.decrypt_pending_member(m))
.collect::<Result<_, _>>()?;
. In particular, the group has three pending members. The decryption of one of those fails at
let aci = self.decrypt_aci(&inner_member.user_id)?;
with GroupDecodingError::NotAci. The group contains around 20 accounts that show up as "Deleted account" in the official client, which might be relevant in this case.

Tested on f99ff83.

@direc85
Copy link
Contributor

direc85 commented Oct 12, 2024

Thanks for reporting!

This is another side effect of not supporting group update messages properly. I guess this bumps up the priority of it. It's been on my list for ages and I even have some code for it...

Related bug: whisperfish#706

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants