diff --git a/ElectronClient/app/bridge.js b/ElectronClient/app/bridge.js index f713cc9345..315b20881e 100644 --- a/ElectronClient/app/bridge.js +++ b/ElectronClient/app/bridge.js @@ -62,9 +62,9 @@ class Bridge { return filePaths; } - showMessageBox(options) { + showMessageBox(window, options) { const {dialog} = require('electron'); - return dialog.showMessageBox(this.window(), options); + return dialog.showMessageBox(window, options); } showErrorMessageBox(message) { diff --git a/ElectronClient/app/checkForUpdates.js b/ElectronClient/app/checkForUpdates.js index 5ea6361f41..7e20c3f06d 100644 --- a/ElectronClient/app/checkForUpdates.js +++ b/ElectronClient/app/checkForUpdates.js @@ -16,6 +16,8 @@ autoUpdater.autoDownload = false; function htmlToText_(html) { let output = html.replace(/\n/g, ''); output = output.replace(/
  • /g, '- '); + output = output.replace(/

    /g, ''); + output = output.replace(/<\/p>/g, '\n'); output = output.replace(/<\/li>/g, '\n'); output = output.replace(/