1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-10 13:23:41 +00:00

Fixed bug preventing message-box from working when not running as root/service

This commit is contained in:
Bryan Roe
2020-06-13 04:19:40 -07:00
parent dbefd25475
commit ee0787f416
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -20,7 +20,7 @@ function childContainer()
this._ObjectID = 'child-container';
this.create = function create(options)
{
if (!options || (!options.user && !options.uid) || !options.launch || !options.launch.module || !options.launch.method || !options.launch.args) { throw ('Invalid Parameters'); }
if (!options || !options.launch || !options.launch.module || !options.launch.method || !options.launch.args) { throw ('Invalid Parameters'); }
var ipcInteger;