Skip to content

Commit

Permalink
[build images]
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Dec 12, 2024
1 parent 51daac2 commit 2998a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2751,7 +2751,7 @@ export function getLoggedInUserCountOrDetails() {
return 0;
}

let message = users.length + " currently logged in users:";
let message = `${users.length} currently logged in users:`;

for (const user of users) {
message += `\n- ${user.username} on ${user.terminal} since ${user.datetime}${user.ip ? ` from ${user.ip}` : ""}`;
Expand Down

0 comments on commit 2998a81

Please sign in to comment.