mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-23 06:34:54 +03:00
Merge pull request #1405 from ryanblenis/1337-fix
Fix plugin refresh failure due to PR #1337
This commit is contained in:
commit
224c99c57a
@ -130,7 +130,7 @@ module.exports.pluginHandler = function (parent) {
|
||||
obj.refreshJS = function (req, res) {
|
||||
// to minimize server reboots when installing new plugins, we call the new data and overwrite the old pluginHandler on the front end
|
||||
res.set('Content-Type', 'text/javascript');
|
||||
res.send('pluginHandlerBuilder = ' + obj.prepExports() + ' pluginHandler = new pluginHandlerBuilder(); pluginHandler.callHook("onWebUIStartupEnd");');
|
||||
res.send('pluginHandlerBuilder = ' + obj.prepExports() + "\r\n" + ' pluginHandler = new pluginHandlerBuilder(); pluginHandler.callHook("onWebUIStartupEnd");');
|
||||
}
|
||||
|
||||
obj.callHook = function (hookName, ...args) {
|
||||
|
Loading…
Reference in New Issue
Block a user