Skip to content

Commit e7119d0

Browse files
author
Damian Kowalewski
committed
fix the closing of push fid on close()
1 parent d1265f3 commit e7119d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/internal/ParseResponse.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void ParseResponse::freeBuffer() {
159159
}
160160

161161
void ParseResponse::close() {
162-
if (client) {
162+
if (client && client != &Parse.pushClient) {
163163
client->close();
164164
}
165165
freeBuffer();

0 commit comments

Comments
 (0)