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

Commit

Permalink
Revert "[Release] 2.3.3"
Browse files Browse the repository at this point in the history
This reverts commit 266d514.
  • Loading branch information
Akkadius committed Aug 20, 2023
1 parent 266d514 commit 33aa2af
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ 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
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 > 1) {
if (cmdlineSplit.length > 0) {
commandLine = cmdlineSplit[1].trim();
}

const proc = {
"name": simpleProcessName,
"pid": processId,
"cmd": commandLine
};

processList.push(proc);
processList.push(
{
"name": simpleProcessName,
"pid": processId,
"cmd": commandLine
}
);
}
}
});
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.3",
"version": "2.3.2",
"private": true,
"bin": "./app/bin/admin",
"scripts": {
Expand Down

0 comments on commit 33aa2af

Please sign in to comment.