We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c46a4 commit a69b92dCopy full SHA for a69b92d
src/main/java/pl/stachuofficial/hirezapi/api/Signature.java
@@ -58,8 +58,8 @@ public String generateUrl(String method) {
58
String url = method + "Json/";
59
url += devId + "/";
60
url += generateSignature(method) + "/";
61
- url += HiRezAPI.sessions.getProperty(platform);
62
- url += generateTimestamp() + "/";
+ url += HiRezAPI.sessions.getProperty(platform) + "/";
+ url += generateTimestamp();
63
64
return url;
65
}
@@ -68,7 +68,7 @@ public String createSession() {
68
String url = "createsessionJson/";
69
70
url += generateSignature("createsession") + "/";
71
72
73
74
0 commit comments