Post data ready notification every time

This commit is contained in:
ismailgulek 2021-09-08 13:54:08 +03:00
parent c90c6a5ad4
commit 5f82518f11
No known key found for this signature in database
GPG key ID: E96336D42D9470A9

View file

@ -977,11 +977,8 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
if (dataSource.state == MXKDataSourceStateReady)
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
[[NSNotificationCenter defaultCenter] postNotificationName:RecentsViewControllerDataReadyNotification
object:self];
});
[[NSNotificationCenter defaultCenter] postNotificationName:RecentsViewControllerDataReadyNotification
object:self];
}
}