From 3593935973571db6f67bff583d901e7ef397b414 Mon Sep 17 00:00:00 2001 From: Amaury Martiny Date: Tue, 3 Jul 2018 18:49:33 +0200 Subject: [PATCH] Fix logLastLine includes --- packages/parity-electron/src/runParity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/parity-electron/src/runParity.js b/packages/parity-electron/src/runParity.js index cd2f277a..0e328cc1 100644 --- a/packages/parity-electron/src/runParity.js +++ b/packages/parity-electron/src/runParity.js @@ -47,7 +47,7 @@ export const runParity = async (additionalFlags, onParityError) => { await fsChmod(parityPath, '755'); } catch (e) {} - let logLastLine; // Always contains last line of the Parity logs + let logLastLine = ''; // Always contains last line of the Parity logs // Run an instance of parity with the correct args const args = [...parityArgv(), ...additionalFlags]; -- GitLab