Private
Public Access
1
0

Move off of macosxinternal sdk

This moves kordophone off of using the internal SDK and switches to using class dumped headers instead.
This commit is contained in:
James Magahern
2019-12-16 17:29:53 -08:00
parent 6c089f737b
commit 4f7a6d1b87
20 changed files with 8610 additions and 207 deletions

View File

@@ -7,7 +7,7 @@
//
#import "MBIMMarkOperation.h"
#import <IMCore/IMCore.h>
#import "IMCore_ClassDump.h"
@implementation MBIMMarkOperation
@@ -31,7 +31,7 @@
}
dispatch_sync([[self class] sharedIMAccessQueue], ^{
IMChat *chat = [sChatRegistry existingChatWithGUID:guid];
IMChat *chat = [[IMChatRegistry sharedInstance] existingChatWithGUID:guid];
if (!chat) {
MBIMLogInfo(@"Chat with guid: %@ not found", guid);
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];