From d03f7ab2c2322d27acc3b565998075c3c2bb4f9d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 1 Jul 2015 22:07:27 -0500 Subject: [PATCH] fix: send manifest instead of config to ui --- app/lib/muxrpc-ipc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/muxrpc-ipc.js b/app/lib/muxrpc-ipc.js index 682a025..0c56d50 100644 --- a/app/lib/muxrpc-ipc.js +++ b/app/lib/muxrpc-ipc.js @@ -31,9 +31,9 @@ module.exports = function (window, sbot, params) { )) // setup helper messages - ipc.on('fetch-config', function(e) { + ipc.on('fetch-manifest', function(e) { if (e.sender == window.webContents) - e.returnValue = sbot.config + e.returnValue = sbot.manifest }); ipc.on('fetch-params', function(e) { if (e.sender == window.webContents)