From e793920ed9b35dc09371b6f739a275e4db02ebf5 Mon Sep 17 00:00:00 2001 From: noodlebox Date: Thu, 26 Jan 2017 18:03:52 -0600 Subject: [PATCH] Use path for stable release as Linux default --- Installers/Electron/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installers/Electron/src/utils.js b/Installers/Electron/src/utils.js index b05d2bb..ec5e958 100644 --- a/Installers/Electron/src/utils.js +++ b/Installers/Electron/src/utils.js @@ -74,7 +74,7 @@ class Utils { return path; }, "darwin": () => "/Applications/Discord.app/Contents", - "linux": () => "/usr/share/discord-canary" + "linux": () => "/usr/share/discord" }[platform](); }