fix metadata transmission
All checks were successful
/ Build BaseBand Server (push) Successful in 1m42s

This commit is contained in:
Daniella / Tove 2024-06-12 15:28:43 +02:00
parent 0db3c8a9d7
commit 9de5f7b844
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -31,7 +31,7 @@ public class LoaderHandler {
if(response.o == UserHandler.Response.OK.ordinal()) {
TCN data = new TCN();
data.set("release-branch", "release".equals(response.t.getString("branch")));
outputStream.writeString(Tools.mapToString(data.toMap()));
outputStream.writeString(key.encryptString(Tools.mapToString(data.toMap())));
Map<String, byte[]> classes = null;
if("main".equals(response.t.getString("branch")))