1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-24 12:13:16 +00:00

Updated exit method for privacy bar

This commit is contained in:
Bryan Roe
2020-05-09 15:20:57 -07:00
parent 308241efd1
commit dee281af65
2 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ function windows_notifybar_system(title, tsid)
{
var ret = {};
var script = Buffer.from("require('notifybar-desktop')('" + title + "').on('close', function(){process.exit();});").toString('base64');
var script = Buffer.from("require('notifybar-desktop')('" + title + "').on('close', function(){process._exit();});").toString('base64');
require('events').EventEmitter.call(ret, true)
.createEvent('close')