Skip to content

Commit

Permalink
fix typo on "if (!client->send();) return 0;" (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmedici authored Aug 17, 2023
1 parent c4ced25 commit c22f062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AsyncWebSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ size_t webSocketSendFrame(AsyncClient *client, bool final, uint8_t opcode, bool
return 0;
}
}
if (!client->send();) return 0;
if (!client->send()) return 0;
return len;
}

Expand Down

0 comments on commit c22f062

Please sign in to comment.