|  | @@ -132,9 +132,10 @@ public class PQSingletoWXApiUtil: NSObject {
 | 
	
		
			
				|  |  |              return .shared
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          let message = WXMediaMessage()
 | 
	
		
			
				|  |  | -        message.title = title ?? ""
 | 
	
		
			
				|  |  | +        message.title = (title?.count ?? 0) > 0 ? title! : "分享一个视频给你"
 | 
	
		
			
				|  |  |          message.description = description ?? ""
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | +        BFLog(1, message: "test - \(String(describing: imageUrl))")
 | 
	
		
			
				|  |  | +        
 | 
	
		
			
				|  |  |          ImageDownloader.default.downloadImage(with: URL(string: imageUrl ?? "")!, options: nil) { result in
 | 
	
		
			
				|  |  |              switch result {
 | 
	
		
			
				|  |  |              case let .success(imageResult):
 |