Closed Skycoder42 closed 1 year ago
Currently, the etebase_invitation_manager_reject method actually invokes this.accept - which is the opposite of what it should do. (See https://github.com/etesync/libetebase/blob/master/src/lib.rs#L2032).
etebase_invitation_manager_reject
this.accept
#[no_mangle] pub unsafe extern fn etebase_invitation_manager_reject(this: &CollectionInvitationManager, invitation: &SignedInvitation) -> i32 { try_or_int!(this.accept(invitation)); // should be this.reject(invitation) 0 }
Currently, the
etebase_invitation_manager_reject
method actually invokesthis.accept
- which is the opposite of what it should do. (See https://github.com/etesync/libetebase/blob/master/src/lib.rs#L2032).