Skip to content

Commit

Permalink
Fix cast bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Gilles committed Aug 7, 2024
1 parent 9ddcfc3 commit 2293a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/lib/gateway/gateway.getLatestGladysVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function getLatestGladysVersion() {
node_version: systemInfos.nodejs_version,
is_docker: systemInfos.is_docker,
client_id: clientId,
device_state_count: deviceStateCount,
device_state_count: Number(deviceStateCount),
integrations: serviceUsage,
};
const latestGladysVersion = await this.gladysGatewayClient.getLatestGladysVersion(systemInfos.gladys_version, params);
Expand Down

0 comments on commit 2293a6c

Please sign in to comment.