Skip to content

Commit 4ea5a39

Browse files
authored
chore: remove some unnecessary contents & add .gitignore (#603)
* feat: implement checkConversation seq. * update method contents and remove unnecessary method. * update error wrap. * remove .DS_Store * update .gitignore * remove unnecessry method. * update method.
1 parent a23507d commit 4ea5a39

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,7 @@ fabric.properties
169169

170170
# CodeStream plugin
171171
# https://plugins.jetbrains.com/plugin/12206-codestream
172-
.idea/codestream.xml
172+
.idea/codestream.xml
173+
174+
# Mac Desktop Services Store
175+
.DS_Store

open_im_sdk/third.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ func SetAppBadge(callback open_im_sdk_callback.Base, operationID string, appUnre
2626
call(callback, operationID, UserForSDK.Third().SetAppBadge, appUnreadCount)
2727
}
2828

29-
func UploadLogs(callback open_im_sdk_callback.Base, operationID string, systemType, ex string, progress open_im_sdk_callback.UploadLogProgress) {
30-
call(callback, operationID, UserForSDK.Third().UploadLogs, systemType, ex, progress)
29+
func UploadLogs(callback open_im_sdk_callback.Base, operationID string, ex string, progress open_im_sdk_callback.UploadLogProgress) {
30+
call(callback, operationID, UserForSDK.Third().UploadLogs, ex, progress)
3131
}

0 commit comments

Comments
 (0)