Skip to content

Commit 01523b1

Browse files
committed
store: set pull flag in client payloads
1 parent 0419cb4 commit 01523b1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

store/clientpayload.go

+2
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ func (device *Device) getRegistrationPayload() *waWa6.ClientPayload {
162162
DeviceProps: deviceProps,
163163
}
164164
payload.Passive = proto.Bool(false)
165+
payload.Pull = proto.Bool(false)
165166
return payload
166167
}
167168

@@ -170,6 +171,7 @@ func (device *Device) getLoginPayload() *waWa6.ClientPayload {
170171
payload.Username = proto.Uint64(device.ID.UserInt())
171172
payload.Device = proto.Uint32(uint32(device.ID.Device))
172173
payload.Passive = proto.Bool(true)
174+
payload.Pull = proto.Bool(true)
173175
return payload
174176
}
175177

0 commit comments

Comments
 (0)