1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-20 00:49:10 -05:00

Fix certificate parsing issues (#109)

This commit is contained in:
Mikołaj Pich 2018-05-14 21:12:45 +02:00 committed by Rafał Borcz
parent 08dd316aee
commit 0014b74c6b

View File

@ -58,7 +58,6 @@ public class Client {
return;
}
this.cookies = new Cookies();
this.symbol = new Login(this).login(email, password, symbol);
}
@ -143,6 +142,8 @@ public class Client {
this.cookies.addItems(response.cookies());
response.bufferUp(); // fixes cert parsing issues
return checkForErrors(response.parse());
}