We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8a4e5 commit c44c8b5Copy full SHA for c44c8b5
internal/proto/reader.go
@@ -91,8 +91,8 @@ func (r *Reader) PeekReplyType() (byte, error) {
91
}
92
93
func (r *Reader) PeekPushNotificationName() (string, error) {
94
- // peek 32 bytes, should be enough to read the push notification name
95
- buf, err := r.rd.Peek(32)
+ // peek 36 bytes, should be enough to read the push notification name
+ buf, err := r.rd.Peek(36)
96
if err != nil {
97
return "", err
98
0 commit comments