fix: reinstall app sync data split.

This commit is contained in:
Gordon
2024-06-28 11:41:27 +08:00
parent b162725bd6
commit f0bd767d81
15 changed files with 292 additions and 70 deletions

View File

@@ -142,17 +142,21 @@ func newEmptyConversationListener(ctx context.Context) open_im_sdk_callback.OnCo
return &emptyConversationListener{ctx: ctx}
}
func (e *emptyConversationListener) OnSyncServerStart() {
func (e *emptyConversationListener) OnSyncServerStart(reinstalled bool) {
log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
}
func (e *emptyConversationListener) OnSyncServerFinish() {
func (e *emptyConversationListener) OnSyncServerProgress(progress int) {
log.ZWarn(e.ctx, "ConversationListener is not implemented", nil,
"progress", progress)
}
func (e *emptyConversationListener) OnSyncServerFinish(reinstalled bool) {
log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
}
func (e *emptyConversationListener) OnSyncServerFailed() {
func (e *emptyConversationListener) OnSyncServerFailed(reinstalled bool) {
log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
}