Skip to content

Commit 77f7b14

Browse files
committed
release version 1.1.1
1 parent ec77830 commit 77f7b14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<artifactId>ezyfox-server-java-client</artifactId>
1313

14-
<version>1.1.0</version>
14+
<version>1.1.1</version>
1515
<name>ezyfox-server-java-client</name>
1616
<url>https://youngmonkeys.org/</url>
1717

src/main/java/com/tvd12/ezyfoxserver/client/handler/EzyHandshakeHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ protected void preHandle(EzyArray data) {
3030
this.client.setSessionToken(data.get(1, String.class));
3131
this.client.setSessionId(data.get(2, long.class));
3232
if(client.isEnableSSL()) {
33-
this.client.setSessionKey(decrypteSessionKey(data.get(3, byte[].class, null)));
33+
this.client.setSessionKey(decryptSessionKey(data.get(3, byte[].class, null)));
3434
}
3535
}
3636

37-
protected byte[] decrypteSessionKey(byte[] sessionKey) {
37+
protected byte[] decryptSessionKey(byte[] sessionKey) {
3838
if(sessionKey == null) {
3939
if(client.isEnableDebug()) {
4040
return null;

0 commit comments

Comments
 (0)