Private
Public Access
1
0

send: must be performed on main queue

This commit is contained in:
James Magahern
2023-07-06 15:27:31 -07:00
parent d071e68a56
commit 37ff0b375f

View File

@@ -46,7 +46,9 @@
MBIMLogInfo(@"Chat does not exist: %@", chatGUID); MBIMLogInfo(@"Chat does not exist: %@", chatGUID);
result = NO; result = NO;
} else { } else {
dispatch_async(dispatch_get_main_queue(), ^{
[chat sendMessage:reply]; [chat sendMessage:reply];
});
} }
}); });