From 680dc5b737dd219712d9f3263203fb21b7d74830 Mon Sep 17 00:00:00 2001 From: Guy Sheffer Date: Thu, 27 Jan 2022 13:03:46 +0200 Subject: [PATCH] Fix discord url #68 --- dist/main.js | 2 +- src/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/main.js b/dist/main.js index 683262e..76f6aaa 100644 --- a/dist/main.js +++ b/dist/main.js @@ -332,7 +332,7 @@ typeof GM[requiredMethod] !== 'undefined'; }; - const DISCORD_URL = 'https://discord.gg/gSsTUvJmD8'; + const DISCORD_URL = 'https://discord.gg/kTyx6nUjMv'; const escapeFilename = (s) => { return s.replace(/[\s<>:{}"/\\|?*~.\0\cA-\cZ]+/g, '_'); }; diff --git a/src/utils.ts b/src/utils.ts index 1c4838b..6f51f07 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -2,7 +2,7 @@ import isNodeJs from 'detect-node' import { isGmAvailable, _GM } from './gm' -export const DISCORD_URL = 'https://discord.gg/gSsTUvJmD8' +export const DISCORD_URL = 'https://discord.gg/kTyx6nUjMv' export const escapeFilename = (s: string): string => { return s.replace(/[\s<>:{}"/\\|?*~.\0\cA-\cZ]+/g, '_')