3.0-enterprise

This commit is contained in:
hrxiang
2023-07-13 18:28:02 +08:00
parent 3527c80e7b
commit cfc94c06da
3 changed files with 3 additions and 35 deletions

View File

@@ -144,7 +144,7 @@ public class UploadFileListener: NSObject, Open_im_sdk_callbackUploadFileCallbac
values["id"] = id
values["partHash"] = partsHash
values["fileHash"] = fileHash
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "hashPartComplete", errCode: nil, errMsg: nil, data: values);<#code#>
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "hashPartComplete", errCode: nil, errMsg: nil, data: values)
}
public func hashPartProgress(_ index: Int32, size: Int64, partHash: String?) {
@@ -193,6 +193,6 @@ public class UploadFileListener: NSObject, Open_im_sdk_callbackUploadFileCallbac
values["index"] = index
values["partSize"] = partSize
values["partHash"] = partHash
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "uploadPartComplete", errCode: nil, errMsg: nil, data: values);<#code#>
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "uploadPartComplete", errCode: nil, errMsg: nil, data: values)
}
}