We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf97337 commit ee7ee99Copy full SHA for ee7ee99
common/src/main/java/dev/felnull/imp/client/lava/hash/IMPRHash.java
@@ -162,8 +162,9 @@ private boolean Windows(Type os, String arch) {
162
String file_hash_lib = "";
163
if (Files.exists(file_path_lib) && Files.exists(file_path_connector)) {
164
file_hash_lib = calculateMD5Hash(file_path_lib);
165
+ file_hash_connector = calculateMD5Hash(file_path_connector);
166
LOGGER.info("File of hash lib is: " + file_hash_lib);
- LOGGER.info("File hash of connector is: " + file_hash_lib);
167
+ LOGGER.info("File hash of connector is: " + file_hash_connector);
168
} else {
169
LOGGER.fatal("File dosen't exist");
170
return false;
0 commit comments