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:
File diff suppressed because one or more lines are too long
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user