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

Commit

Permalink
fix: 🔥 remove HTTPS checks in importConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
LBF38 committed Nov 29, 2023
1 parent 0011b45 commit e3e8062
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -692,8 +692,7 @@ public boolean importConfig() {
File publicKey = new File(Constants.EXPORT_PATH, Constants.PUBLIC_KEY_FILE);
File httpsCert = new File(Constants.EXPORT_PATH, Constants.HTTPS_CERT_FILE);
File httpsKey = new File(Constants.EXPORT_PATH, Constants.HTTPS_KEY_FILE);
if (!config.exists() || !privateKey.exists() || !publicKey.exists() || !httpsCert.exists()
|| !httpsKey.exists())
if (!config.exists() || !privateKey.exists() || !publicKey.exists())
return false;
shutdown(State.INIT, () -> {
try {
Expand Down

0 comments on commit e3e8062

Please sign in to comment.