2
0

Delegate main-thread activity on the main thread.

This commit is contained in:
Maarten Billemont 2020-04-06 19:24:46 -04:00
parent 340044e945
commit d564afe3ec

View File

@ -699,8 +699,10 @@ referenceSizeForFooterInSection:(NSInteger)section {
} );
PearlAddNotificationObserver( NSPersistentStoreCoordinatorStoresDidChangeNotification, [MPiOSAppDelegate get].storeCoordinator, nil,
^(MPUsersViewController *self, NSNotification *note) {
[self registerObservers];
[self reloadUsers];
PearlMainQueue( ^{
[self registerObservers];
[self reloadUsers];
} );
} );
}