Skip to content

Commit

Permalink
6.4.8-rc1 (#1335)
Browse files Browse the repository at this point in the history
- Improve OMEMO handling when offline
- Fix more background crashes
  • Loading branch information
tmolitor-stud-tu authored Dec 17, 2024
2 parents 974a840 + 9c473e8 commit ee47cc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Monal/Classes/MLConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ static inline NSString* _Nonnull LocalizationNotNeeded(NSString* _Nonnull s)
#define kMonalIncomingSDP @"kMonalIncomingSDP"
#define kMonalIncomingICECandidate @"kMonalIncomingICECandidate"
#define kMonalWillBeFreezed @"kMonalWillBeFreezed"
#define kMonalIsFreezed @"kMonalIsFreezed"
#define kMonalFrozen @"kMonalFrozen"
#define kMonalUnfrozen @"kMonalUnfrozen"
#define kMonalNewMessageNotice @"kMonalNewMessageNotice"
#define kMonalMucSubjectChanged @"kMonalMucSubjectChanged"
#define kMonalDeletedMessageNotice @"kMonalDeletedMessageNotice"
Expand Down
2 changes: 1 addition & 1 deletion Monal/Classes/MLProcessLock.m
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ +(void) lock
lock = flock(_ownLockFD, LOCK_EX | LOCK_NB);
if(lock != 0)
@throw [NSException exceptionWithName:@"LockingError" reason:[NSString stringWithFormat:@"flock returned: %d (%d) on file: %s", lock, errno, _ownLockPath] userInfo:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(unlock) name:kMonalIsFreezed object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(unlock) name:kMonalFrozen object:nil];
}
}

Expand Down

0 comments on commit ee47cc7

Please sign in to comment.