aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-03-08 15:28:35 +0100
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-03-08 15:28:35 +0100
commitb6469566c2c88e8a61334d5d15a0f7c1afe08288 (patch)
treef42dd4962c74057c6432866205b16c9d78a1c07e /src/electron
parentremove dev logs (diff)
parentcorrectly update services submenu on language change (diff)
downloadferdium-app-b6469566c2c88e8a61334d5d15a0f7c1afe08288.tar.gz
ferdium-app-b6469566c2c88e8a61334d5d15a0f7c1afe08288.tar.zst
ferdium-app-b6469566c2c88e8a61334d5d15a0f7c1afe08288.zip
fix merge conflicts with latest develop
Diffstat (limited to 'src/electron')
-rw-r--r--src/electron/ipc-api/autoUpdate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/electron/ipc-api/autoUpdate.js b/src/electron/ipc-api/autoUpdate.js
index 83dd83712..74b718734 100644
--- a/src/electron/ipc-api/autoUpdate.js
+++ b/src/electron/ipc-api/autoUpdate.js
@@ -4,7 +4,7 @@ import { autoUpdater } from 'electron-updater';
4const debug = require('debug')('Franz:ipcApi:autoUpdate'); 4const debug = require('debug')('Franz:ipcApi:autoUpdate');
5 5
6export default (params) => { 6export default (params) => {
7 if (process.platform === 'darwin' || process.platform === 'win32') { 7 if (process.platform === 'darwin' || process.platform === 'win32' || process.env.APPIMAGE) {
8 ipcMain.on('autoUpdate', (event, args) => { 8 ipcMain.on('autoUpdate', (event, args) => {
9 try { 9 try {
10 autoUpdater.autoInstallOnAppQuit = false; 10 autoUpdater.autoInstallOnAppQuit = false;