Post data ready notification every time

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