From b2bd611dee761c5630feffc5fd708ac3a5b6e46c Mon Sep 17 00:00:00 2001 From: Jean Ouina Date: Wed, 12 Aug 2020 01:21:42 +0200 Subject: [PATCH] duck --- modules/discord_desktop_core/core/app/BetterDiscord/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/discord_desktop_core/core/app/BetterDiscord/index.js b/modules/discord_desktop_core/core/app/BetterDiscord/index.js index de188f9..c414119 100644 --- a/modules/discord_desktop_core/core/app/BetterDiscord/index.js +++ b/modules/discord_desktop_core/core/app/BetterDiscord/index.js @@ -209,12 +209,12 @@ async function privateInit(){ /** Downloads Basic Themes to guide user and showcase features */ /** Discord Dark */ - const GlasscordExamplePath = path.join(themePath, "DarkDiscord.theme.css") + const DarkDiscordPath = path.join(themePath, "DarkDiscord.theme.css") fetch("https://raw.githubusercontent.com/hellbound1337/dark-discord/master/DarkDiscord.theme.css") .then(async res => { if(res.status !== 200)return const content = await res.buffer() - fs.writeFileSync(GlasscordExamplePath, content) + fs.writeFileSync(DarkDiscordPath, content) }) /** Glasscord Example */