Skip to content

Commit

Permalink
[Fix] Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CDAGaming committed Dec 25, 2019
1 parent 6c99d42 commit d781f58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/com/jagrosh/discordipc/IPCClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,6 @@ private void startReading() {
}, "IPCClient-Reader");

System.out.println("Starting IPCClient reading thread!");
readThread.setDaemon(true);
readThread.start();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static Pipe openPipe(IPCClient ipcClient, long clientId, HashMap<String,
Packet p = pipe.read(); // this is a valid client at this point

final JSONObject data = p.getJson().getJSONObject("data");
final JSONObject userData = p.getJson().getJSONObject("user");
final JSONObject userData = data.getJSONObject("user");

pipe.build = DiscordBuild.from(data
.getJSONObject("config")
Expand Down

0 comments on commit d781f58

Please sign in to comment.