Use "apikey.txt" instead of "apikey" as the filename to store the api key, to make it easier for users to open.

This commit is contained in:
CalDescent 2022-01-08 10:22:14 +00:00
parent 396dc5c9b0
commit b6db5aa2d3

View File

@ -32,7 +32,7 @@ public class ApiKey {
/* Filesystem */
private Path getFilePath() {
return Paths.get(Settings.getInstance().getApiKeyPath(), "apikey");
return Paths.get(Settings.getInstance().getApiKeyPath(), "apikey.txt");
}
private boolean load() throws IOException {