Skip to content

Commit

Permalink
Fix discord url Xmader#68
Browse files Browse the repository at this point in the history
  • Loading branch information
guysoft committed Jan 27, 2022
1 parent 87a2efd commit 680dc5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, '_');
};
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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, '_')
Expand Down

0 comments on commit 680dc5b

Please sign in to comment.