浏览代码

Fix INITIAL_BOOTSTRAP history syncs not being handled

Tulir Asokan 3 年之前
父节点
当前提交
bc1bf6079a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      historysync.go

+ 1 - 1
historysync.go

@@ -66,7 +66,7 @@ func (user *User) handleHistorySyncsLoop() {
 }
 
 func (user *User) handleHistorySync(evt *waProto.HistorySync) {
-	if evt.GetSyncType() != waProto.HistorySync_RECENT && evt.GetSyncType() != waProto.HistorySync_FULL {
+	if evt == nil || evt.SyncType == nil || evt.GetSyncType() == waProto.HistorySync_INITIAL_STATUS_V3 || evt.GetSyncType() == waProto.HistorySync_PUSH_NAME {
 		return
 	}
 	user.log.Infofln("Handling history sync with type %s, %d conversations, chunk order %d, progress %d%%", evt.GetSyncType(), len(evt.GetConversations()), evt.GetChunkOrder(), evt.GetProgress())