diff --git a/CHANGELOG.md b/CHANGELOG.md index b23ace9..50a418d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.3] + +* [Process Management] Windows launcher fix edge case + ## [2.3.2] * [Process Management] Windows launcher fix edge case diff --git a/app/core/server-process-manager.js b/app/core/server-process-manager.js index ec2aa03..0745c6f 100644 --- a/app/core/server-process-manager.js +++ b/app/core/server-process-manager.js @@ -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); } } }); diff --git a/package.json b/package.json index 33e879c..ee66647 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eqemu-admin", - "version": "2.3.2", + "version": "2.3.3", "private": true, "bin": "./app/bin/admin", "scripts": {