Skip to content

Commit

Permalink
Update old NTR port setting automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
Eiim committed Feb 21, 2024
1 parent aa53565 commit 819cda1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/chokistream/INIParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public void readFile() throws IOException {
if(!data.containsKey(key)) {
iniLines.add(new IniLine(true, key));
}
if(Prop.PORT.getShortName().equals(key) && "8000".equals(value))
value = "8001"; // Update old NTR port default
data.put(key, value);
}
}
Expand Down

0 comments on commit 819cda1

Please sign in to comment.