@ -226,7 +226,8 @@ static NSArray *s_keys;
NSMutableArray *result = [@[ @[kPepAddress, self.address],
@[kPepCommType,
[NSNumber numberWithInteger:(NSInteger) self.commType]],
@[kPepIsOwnIdentity, [NSNumber numberWithBool:self.isOwn]]]
@[kPepIsOwnIdentity, [NSNumber numberWithBool:self.isOwn]],
@[kPepFlags, [NSNumber numberWithInt:self.flags]]]
mutableCopy];
if (self.fingerPrint) {
@ -101,3 +101,6 @@ extern NSString *const _Nonnull kPepHeaderAutoConsume;
/** The positive value of the header for "pEp-auto-consume". */
extern NSString *const _Nonnull kPepValueAutoConsumeYes;
/// The key to the flags, which control pEp sync behaviour of an identity
extern NSString *const _Nonnull kPepFlags;
@ -66,3 +66,5 @@ NSString *const _Nonnull kPepIsOwnIdentity = @"kPepIsOwnIdentity";
NSString *const _Nonnull kPepHeaderAutoConsume = @"pEp-auto-consume";
NSString *const _Nonnull kPepValueAutoConsumeYes = @"yes";
NSString *const _Nonnull kPepFlags = @"flags";