From 5a4e121e2b6dddba16ed53fd4427f6d817939ea9 Mon Sep 17 00:00:00 2001 From: noodlebox Date: Wed, 18 Jan 2017 03:40:01 -0600 Subject: [PATCH] Fix missing value for OSX --- Installers/Electron/src/utils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Installers/Electron/src/utils.js b/Installers/Electron/src/utils.js index e08e95e..727baa9 100644 --- a/Installers/Electron/src/utils.js +++ b/Installers/Electron/src/utils.js @@ -84,6 +84,9 @@ class Utils { "win32": () => { return `${process.env.APPDATA}/BetterDiscord/lib`; }, + "darwin": () => { + return ""; // TODO + }, "linux": () => { return ""; // TODO }