remove all member_added/remove_events

This commit is contained in:
holger krekel
2020-04-19 21:13:08 +02:00
parent 02cda1e611
commit 70c082a1b1
7 changed files with 7 additions and 91 deletions

View File

@@ -196,25 +196,6 @@ impl ContextWrapper {
progress as uintptr_t,
);
}
Event::SecurejoinMemberAdded {
chat_id,
contact_id,
}
| Event::MemberAdded {
chat_id,
contact_id,
}
| Event::MemberRemoved {
chat_id,
contact_id,
} => {
ffi_cb(
self,
event_id,
chat_id.to_u32() as uintptr_t,
contact_id as uintptr_t,
);
}
}
}
}