Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RunOnFluxBot committed Dec 10, 2024
1 parent c99a5e9 commit 6113c85
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions services/fluxService.js
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,14 @@ async function getFluxInfo(req, res) {
if (dosResult.status === 'error') {
throw dosAppsResult.data;
}
const arcaneHumanVersion = process.env.FLUXOS_HUMAN_VERSION;
const arcaneVersion = process.env.FLUXOS_VERSION;
if (arcaneVersion) {
info.flux.arcaneVersion = arcaneVersion;
}
if (arcaneHumanVersion) {
info.flux.arcaneHumanVersion = arcaneHumanVersion;
}
info.flux.appsDos = dosAppsResult.data;
info.flux.development = userconfig.initial.development || false;
const daemonInfoRes = await daemonServiceControlRpcs.getInfo();
Expand Down

0 comments on commit 6113c85

Please sign in to comment.