Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
[Release] 2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkadius committed Aug 20, 2023
1 parent 5c5d6ad commit ba3f213
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.4]
## [2.3.5]

* [Process Management] Windows launcher fix edge case

Expand Down
16 changes: 8 additions & 8 deletions app/core/server-process-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -674,17 +674,17 @@ module.exports = {
.split(",");

let commandLine = "";
if (cmdlineSplit.length > 0) {
if (cmdlineSplit.length > 1) {
commandLine = cmdlineSplit[1].trim();
}

processList.push(
{
"name": simpleProcessName,
"pid": processId,
"cmd": commandLine
}
);
const proc = {
"name": simpleProcessName,
"pid": processId,
"cmd": commandLine
};

processList.push(proc);
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eqemu-admin",
"version": "2.3.4",
"version": "2.3.5",
"private": true,
"bin": "./app/bin/admin",
"scripts": {
Expand Down

0 comments on commit ba3f213

Please sign in to comment.