Commit 166ed1399d17769f89af5ce4f2d9e51dbaa18aea

Authored by yanglingyu
1 parent d10bf4be

no message

CNLiveBBASMModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveBBASMModule'
11   - s.version = '0.0.6'
  11 + s.version = '0.0.7'
12 12 s.summary = 'CNLive-iOS百度小程序接入'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveBBASMModule/Classes/CNLiveBBASMImpl/CNShare/CNBBASMShareImpl.m
... ... @@ -29,7 +29,8 @@ RegisterBBASMAdapter()
29 29 // 小程序页面链接
30 30 NSString *path = content[@"linkUrl"];
31 31 NSDictionary *categoryInfo = content[@"categoryInfo"];
32   - path = [NSString stringWithFormat:@"%@/smartappLandingpage.html?title=%@&content=%@&imageUrl=%@&swanId=%@&type=smartapp",WjjH5_Host,title,sharecontent,iconUrl,categoryInfo[@"source2"]];
  32 +
  33 + path = [NSString stringWithFormat:@"%@/smartappLandingpage.html?title=%@&content=%@&imageUrl=%@&swanId=%@&type=smartapp",WjjH5_Host,title,sharecontent,iconUrl,[NSString stringWithFormat:@"%@/%@",categoryInfo[@"source2"],content[@"path"]]];
33 34  
34 35  
35 36 NSString *mediaType = content[@"mediaType"];
... ...