diff --git a/ios/GLImage.m b/ios/GLImage.m index 649f734d5e10e5832032552bb6ae744ac5554bfe..a9088e08ebc90cf8c077cd607ba633e1f8bc4cba 100644 --- a/ios/GLImage.m +++ b/ios/GLImage.m @@ -108,9 +108,9 @@ RCT_NOT_IMPLEMENTED(-init) if ([NSThread isMainThread]) { setImageBlock(loadedImage); } else { - RCTExecuteOnMainThread(^{ + RCTExecuteOnMainQueue(^{ setImageBlock(loadedImage); - }, NO); + }); } } }];