Skip to content

Commit c2e8d3a

Browse files
Corrected logic error
1 parent a278aad commit c2e8d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/sendValidator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SendValidator {
3434
}
3535

3636
//int given
37-
if (Number.isInteger(serverId)) {
37+
if (!Number.isInteger(serverId)) {
3838
result.setResult(sendResultEnum.AuthenticationValidationFailed);
3939
return result;
4040
}

0 commit comments

Comments
 (0)