Skip to content

Commit

Permalink
FE friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghost-chu committed Sep 11, 2024
1 parent 62ee919 commit 1c95ada
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void handleManifest(Context ctx) {
data.put("modules", moduleManager.getModules().stream()
.filter(FeatureModule::isModuleEnabled)
.map(f -> new ModuleRecord(f.getClass().getName(), f.getConfigName())).toList());
data.put("installation-id", Main.getMainConfig().getString("installation-id", "not-initialized"));
data.put("installationId", Main.getMainConfig().getString("installation-id", "not-initialized"));
ctx.json(new StdResp(true, null, data));
}

Expand Down

0 comments on commit 1c95ada

Please sign in to comment.