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

Commit

Permalink
[iOS] default bundleType is Vue on eagle
Browse files Browse the repository at this point in the history
  • Loading branch information
jianhan-he committed May 30, 2019
1 parent 57cc93b commit 5019175
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion weex_core/Source/core/network/ios/default_request_handler.mm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
NSURL* nsURL = [NSURL URLWithString:NSSTRING(url)];
[[WXSDKManager bridgeMgr] DownloadJS:@(instance_id) url:nsURL completion:^(NSString *script) {
WXPerformBlockOnBridgeThread(^{
callback([script UTF8String] ? : "", "");
NSString* bundleType = @"Vue";
callback([script UTF8String] ? : "", [bundleType UTF8String]);
});
}];
}
Expand Down

0 comments on commit 5019175

Please sign in to comment.