diff --git a/channels/@me/cynergy.js b/channels/@me/cynergy.js index d1a0136..84c347d 100644 --- a/channels/@me/cynergy.js +++ b/channels/@me/cynergy.js @@ -107,9 +107,9 @@ var new_injector = function () { //Until they remove this listener, we'll be replacing it for now, later we'll readd it. let dirlisting = _fs.readdirSync(data()); let latestver = dirlisting.filter(d=>d.indexOf("0.0.") > -1); - let mainScreen = new Buffer(_fs.readFileSync(`${data()}/${latestver[latestver.length-1]}/modules/discord_desktop_core/app/mainScreen.js`)); + let mainScreen = _fs.readFileSync(`${data()}/${latestver[latestver.length-1]}/modules/discord_desktop_core/app/mainScreen.js`); - mainScreen = mainScreen.write(" // Thank you for using Cynergy c:\n mainWindow.webContents.on('dom-ready', function () {require('${data().replace(/\\/g,"/") + '/cynergy/i.js'}').x(mainWindow)});", mainScreen.indexOf(" // TODO: why do we listen to this?\n mainWindow.webContents.on('dom-ready', function () {});")); + mainScreen = mainScreen.write(` // Thank you for using Cynergy c:\n mainWindow.webContents.on('dom-ready', function () {require('${data().replace(/\\/g,"/") + '/cynergy/i.js'}').x(mainWindow)});`, mainScreen.indexOf(" // TODO: why do we listen to this?\n mainWindow.webContents.on('dom-ready', function () {});")); _fs.writeFileSync(`${data()}/${latestver[latestver.length-1]}/modules/discord_desktop_core/app/mainScreen.js`,mainScreen); }