fix installer sending too little data
This commit is contained in:
parent
fcf320bc00
commit
e4d0189d54
2 changed files with 5 additions and 3 deletions
|
@ -34,11 +34,11 @@ import java.util.function.Consumer;
|
||||||
|
|
||||||
public class BaseBand {
|
public class BaseBand {
|
||||||
public static int majorVersion = 1;
|
public static int majorVersion = 1;
|
||||||
public static int buildNumber = 425;
|
public static int buildNumber = 430;
|
||||||
public static String hash = "13abf1c10d8b70e0";
|
public static String hash = "1a786ee0d77bd420";
|
||||||
|
|
||||||
public static String name = "BaseBand";
|
public static String name = "BaseBand";
|
||||||
public long timeOfCompile = 1696031498107L;
|
public long timeOfCompile = 1696036651496L;
|
||||||
public CommandManager commandRegistry;
|
public CommandManager commandRegistry;
|
||||||
public EventBus eventBus;
|
public EventBus eventBus;
|
||||||
public ArrayList<Module> modules = new ArrayList<>();
|
public ArrayList<Module> modules = new ArrayList<>();
|
||||||
|
|
|
@ -112,6 +112,8 @@ public class InstallerApp {
|
||||||
outputF.writeUTF(keyinstance.encryptString(InstallerApp.password));
|
outputF.writeUTF(keyinstance.encryptString(InstallerApp.password));
|
||||||
outputF.writeUTF(keyinstance.encryptString(generate()));
|
outputF.writeUTF(keyinstance.encryptString(generate()));
|
||||||
outputF.writeBoolean(false);
|
outputF.writeBoolean(false);
|
||||||
|
outputF.writeUTF("");
|
||||||
|
outputF.writeUTF("");
|
||||||
outputF.writeInt(0);
|
outputF.writeInt(0);
|
||||||
|
|
||||||
int responseInt = inputF.readInt();
|
int responseInt = inputF.readInt();
|
||||||
|
|
Loading…
Add table
Reference in a new issue