From 9ae45d1258300539186409e921e74c541dc0a269 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Tue, 30 Apr 2024 17:29:31 -0700 Subject: [PATCH] fix(web): discord url --- web/helpers/urls.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/helpers/urls.ts b/web/helpers/urls.ts index 5071153f2..5d3a87f2b 100644 --- a/web/helpers/urls.ts +++ b/web/helpers/urls.ts @@ -9,7 +9,7 @@ const CONNECT_DOCS = new URL('category/unraid-connect', DOCS); const CONNECT_DASHBOARD = new URL(import.meta.env.VITE_CONNECT ?? 'https://connect.myunraid.net'); const CONNECT_FORUMS = new URL('/forum/94-connect-plugin-support/', FORUMS); const CONTACT = new URL('/contact', UNRAID_NET); -const DISCORD = new URL('https://discord.gg/unraid'); +const DISCORD = new URL('https://discord.unraid.net'); const PURCHASE_CALLBACK = new URL('/c', UNRAID_NET); const WEBGUI = new URL(import.meta.env.VITE_WEBGUI ?? window.location.origin);