Fix INITIAL_BOOTSTRAP history syncs not being handled

This commit is contained in:
Tulir Asokan 2021-11-04 01:35:17 +02:00
parent a7d770ea62
commit bc1bf6079a

View file

@ -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())