fix(scanner): scanner second enable call

This commit is contained in:
Alexey Kasyanchuk
2018-02-02 20:16:49 +03:00
parent fa1512dee5
commit 8bbe87ec74
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ export const settingsMenuTemplate = {
label: "Main settings", label: "Main settings",
accelerator: "CmdOrCtrl+O", accelerator: "CmdOrCtrl+O",
click: () => { click: () => {
console.log(BrowserWindow.getFocusedWindow().webContents.send('url', '/config')) BrowserWindow.getFocusedWindow().webContents.send('url', '/config')
} }
} }
] ]

View File

@ -641,7 +641,7 @@ let popDatabaseBalance = () => {
if(undoneQueries == 0) if(undoneQueries == 0)
{ {
balanceDebug('balance done'); balanceDebug('balance done');
spider.ignore = !config.indexer; spider.ignore = false;
} }
}; };