Commit ae7dada4d936f930f4beca6877b02c954639da46

Authored by 张旭
2 parents 6bdb61ab 78239991
metaCode/Classes/Main/MinePage/Controller/CNLiveMineInputViewController.swift
... ... @@ -128,7 +128,9 @@ class CNLiveMineInputViewController : CNLiveBaseViewController, UITableViewDeleg
128 128  
129 129 @objc func sendInfoActionMothod() {
130 130 setupWithContentUploadImage { [self] url in
131   - if (self?.tempCell) self.tempCell._infoModel?.value = url
  131 + if (self.tempCell != nil) {
  132 + self.tempCell._infoModel?.value = url
  133 + }
132 134 CNLiveMineViewModel.requestsPOSTAuthInfo(identityId: "\(_listModel.id)", infos: self.dataArray) { [self] result, respStatue in
133 135 if respStatue == .success {
134 136 showMessage(message: "上传成功")
... ...