Skip to content
This repository was archived by the owner on Jun 3, 2021. It is now read-only.

Commit 5019175

Browse files
committed
[iOS] default bundleType is Vue on eagle
1 parent 57cc93b commit 5019175

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

weex_core/Source/core/network/ios/default_request_handler.mm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
NSURL* nsURL = [NSURL URLWithString:NSSTRING(url)];
3434
[[WXSDKManager bridgeMgr] DownloadJS:@(instance_id) url:nsURL completion:^(NSString *script) {
3535
WXPerformBlockOnBridgeThread(^{
36-
callback([script UTF8String] ? : "", "");
36+
NSString* bundleType = @"Vue";
37+
callback([script UTF8String] ? : "", [bundleType UTF8String]);
3738
});
3839
}];
3940
}

0 commit comments

Comments
 (0)