From 8e65009f91d60e156d70795f1fbf0d1b46ede452 Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 18 Feb 2022 12:08:19 +0100 Subject: [PATCH] feat: add complete app info --- ios/ConnectSDKDispatcher.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/ConnectSDKDispatcher.m b/ios/ConnectSDKDispatcher.m index fe857c6..632d1de 100644 --- a/ios/ConnectSDKDispatcher.m +++ b/ios/ConnectSDKDispatcher.m @@ -200,7 +200,7 @@ - (AppListSuccessBlock) appListSuccess NSMutableArray* results = [NSMutableArray array]; for(AppInfo* info in appList) { - NSDictionary* appInfoObj = @{@"id": info.id, @"name": info.name}; + NSDictionary* appInfoObj = @{@"id": info.id, @"name": info.name, @"rawData": info.rawData}; [results addObject:appInfoObj]; }