Skip to content

Commit

Permalink
Fix #6
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeRNG committed Mar 18, 2023
1 parent e5ee3b9 commit a4f4bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/dfonline/codeclient/FileManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ public static void writeFile(String fileName, String content) throws IOException
}

public static String readFile(String fileName) throws IOException {
return Files.readString(Path().resolve(fileName), StandardCharsets.UTF_8);
return Files.readString(Path().resolve(fileName), StandardCharsets.ISO_8859_1);
}
}

0 comments on commit a4f4bac

Please sign in to comment.