From ba3f213d735580d8543fb9bc50fdc8df31198077 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sun, 20 Aug 2023 01:42:50 -0500 Subject: [PATCH] [Release] 2.3.5 --- CHANGELOG.md | 2 +- app/core/server-process-manager.js | 16 ++++++++-------- package.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3896f..ce47604 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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 1f8240e..5031f9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eqemu-admin", - "version": "2.3.4", + "version": "2.3.5", "private": true, "bin": "./app/bin/admin", "scripts": {