From 05289f88aaf5379f5231f30ffbde7068bb0e2e90 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Wed, 21 Jun 2023 12:11:15 -0400 Subject: [PATCH] main thread change for session handler --- MVMCore/MVMCore/Singletons/MVMCoreObject.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MVMCore/MVMCore/Singletons/MVMCoreObject.m b/MVMCore/MVMCore/Singletons/MVMCoreObject.m index 2bbeb06..21eb44e 100644 --- a/MVMCore/MVMCore/Singletons/MVMCoreObject.m +++ b/MVMCore/MVMCore/Singletons/MVMCoreObject.m @@ -25,9 +25,7 @@ self.session = [[MVMCoreSessionObject alloc] init]; self.cache = [[MVMCoreCache alloc] init]; self.viewControllerMapping = [[MVMCoreViewControllerMappingObject alloc] init]; - [MVMCoreDispatchUtility performSyncBlockOnMainThread:^{ - self.sessionHandler = [[MVMCoreSessionTimeHandler alloc] init]; - }]; + self.sessionHandler = [[MVMCoreSessionTimeHandler alloc] init]; self.actionHandler = [[MVMCoreActionHandler alloc] init]; self.loggingDelegate = [[MVMCoreLoggingHandler alloc] init]; self.loadHandler = [[MVMCoreLoadHandler alloc] init];