mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 08:47:39 +00:00
Forgot the toCharArray
This commit is contained in:
parent
2045dd2832
commit
bed3181252
@ -186,9 +186,9 @@ public final class DispatchServer {
|
||||
} catch (Exception e) {
|
||||
Grasscutter.getLogger().warn("[Dispatch] Unable to load keystore. Using default keystore password...");
|
||||
KeyStore ks = KeyStore.getInstance("PKCS12");
|
||||
ks.load(fis, "123456");
|
||||
ks.load(fis, "123456".toCharArray());
|
||||
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
||||
kmf.init(ks, "123456");
|
||||
kmf.init(ks, "123456".toCharArray());
|
||||
} catch (Exception e) {
|
||||
Grasscutter.getLogger().warn("[Dispatch] Error while loading keystore!");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user