We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 110210d + 02e63ea commit 661ab5cCopy full SHA for 661ab5c
message.go
@@ -507,6 +507,10 @@ func (cli *Client) handleAppStateSyncKeyShare(keys *waProto.AppStateSyncKeyShare
507
cli.Log.Errorf("Failed to do initial fetch of app state %s: %v", name, err)
508
}
509
510
+
511
+ cli.dispatchEvent(&events.InitialDeviceAppStateSyncFinished{
512
+ IsFinished: true,
513
+ })
514
515
516
func (cli *Client) handlePlaceholderResendResponse(msg *waProto.PeerDataOperationRequestResponseMessage) {
types/events/events.go
@@ -583,3 +583,7 @@ type NewsletterLiveUpdate struct {
583
Time time.Time
584
Messages []*types.NewsletterMessage
585
586
587
+type InitialDeviceAppStateSyncFinished struct {
588
+ IsFinished bool
589
+}
0 commit comments