Post data ready notification every time

This commit is contained in:
ismailgulek
2021-09-08 13:54:08 +03:00
parent 1e897e39b8
commit 8faba8cf5a
@@ -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];
}
}