Skip to content

Commit 6fe0064

Browse files
committed
Fix dumpsession
1 parent 3c1ddc5 commit 6fe0064

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/com/rtm516/mcxboxbroadcast/core/SessionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void dumpSession() {
174174
}
175175

176176
HttpRequest createSessionRequest = HttpRequest.newBuilder()
177-
.uri(URI.create(Constants.CREATE_SESSION + this.sessionInfo.getSessionId()))
177+
.uri(URI.create(Constants.CREATE_SESSION.formatted(this.sessionInfo.getSessionId())))
178178
.header("Content-Type", "application/json")
179179
.header("Authorization", getTokenHeader())
180180
.header("x-xbl-contract-version", "107")

0 commit comments

Comments
 (0)