Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Fixed connection issue
Browse files Browse the repository at this point in the history
  • Loading branch information
YeahNotSewerSide authored Aug 15, 2021
1 parent a6146d3 commit 54eaf71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/duco_miner/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void get_pool(){
}
try {
ip = (String)json_response.get("ip");
port = Integer.parseInt((String)json_response.get("port"));
port = (Integer)json_response.get("port");
}catch(Exception e){
return;
}
Expand Down

0 comments on commit 54eaf71

Please sign in to comment.