Skip to content

Commit

Permalink
Fix compile time errors on current develop
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrfennell authored and tmolitor-stud-tu committed Dec 7, 2024
1 parent d0ad873 commit a2c5bd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Monal/Classes/MLIQProcessor.m
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ +(BOOL) processRosterWithAccount:(xmpp*) account andIqNode:(XMPPIQ*) iqNode
andAccount:account.accountID];

NSSet* groups = [NSSet setWithArray:[contactNode find:@"group#"]];
DDLogVerbose(@"Setting roster groups for contact %@: ", contact[@"jid"], groups);
DDLogVerbose(@"Setting roster groups for contact %@: %@", contact[@"jid"], groups);
[[DataLayer sharedInstance] setGroups:groups
forContact:contact[@"jid"]
inAccount:account.accountID];
Expand Down
2 changes: 1 addition & 1 deletion Monal/Classes/MLOMEMO.m
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ -(void) processOMEMOKeys:(MLXMLNode*) item forJid:(NSString*) jid andRid:(NSNumb
uint32_t deviceId = (uint32_t)rid.unsignedIntValue;
SignalAddress* address = [[SignalAddress alloc] initWithName:jid deviceId:deviceId];
SignalSessionBuilder* builder = [[SignalSessionBuilder alloc] initWithAddress:address context:self.signalContext];
NSArray<NSNumber*>* preKeyIds = [bundle find:@"prekeys/preKeyPublic@preKeyId|uint"];
NSMutableArray<NSNumber*>* preKeyIds = [[bundle find:@"prekeys/preKeyPublic@preKeyId|uint"] mutableCopy];

if(preKeyIds == nil || preKeyIds.count == 0)
{
Expand Down

0 comments on commit a2c5bd4

Please sign in to comment.