1 files changed, 3 insertions, 3 deletions
diff --git a/SpacebarDiscordDesktopLauncher/Program.cs b/SpacebarDiscordDesktopLauncher/Program.cs
index cf317a0..9e4ad37 100644
--- a/SpacebarDiscordDesktopLauncher/Program.cs
+++ b/SpacebarDiscordDesktopLauncher/Program.cs
@@ -25,7 +25,7 @@ internal class Program
PlatformID.Unix => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
".local",
"share",
- "Discord-SpacebarLauncher.local2001"),
+ "Discord-SpacebarLauncher"),
_ => throw new Exception($"Unknown platform: {Environment.OSVersion.Platform}")
};
@@ -58,9 +58,9 @@ internal class Program
// various behavior changes
//discordSettings!["WEBAPP_ENDPOINT"] = "https://discord.localhost";
- discordSettings!["WEBAPP_ENDPOINT"] = "https://localhost:2001";
+ //discordSettings!["WEBAPP_ENDPOINT"] = "https://localhost:2001";
//discordSettings!["WEBAPP_ENDPOINT"] = "http://localhost:2000";
- //discordSettings!["WEBAPP_ENDPOINT"] = "https://fermi.chat";
+ discordSettings!["WEBAPP_ENDPOINT"] = "https://fermi.chat";
discordSettings!["trayBalloonShown"] = true; // We don't need to be re-introduced to how system trays work
discordSettings!["MIN_WIDTH"] = 1;
discordSettings!["MIN_HEIGHT"] = 1;
|