Skip to content

Commit c22f062

Browse files
authored
fix typo on "if (!client->send();) return 0;" (#17)
1 parent c4ced25 commit c22f062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AsyncWebSocket.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ size_t webSocketSendFrame(AsyncClient *client, bool final, uint8_t opcode, bool
102102
return 0;
103103
}
104104
}
105-
if (!client->send();) return 0;
105+
if (!client->send()) return 0;
106106
return len;
107107
}
108108

0 commit comments

Comments
 (0)