From fb49160d49b0f07dbf735c196e87fa897cfc87fa Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Wed, 30 Apr 2025 19:26:27 +0200 Subject: [PATCH] Update request url from internal view --- src/util/RequestsUtil.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/RequestsUtil.ts b/src/util/RequestsUtil.ts index 3eeab07..032c2ee 100644 --- a/src/util/RequestsUtil.ts +++ b/src/util/RequestsUtil.ts @@ -149,6 +149,6 @@ export class RequestsUtil { // Escape all of the following characters with a backslash: [, ], \ return content.replace( /([[\]\\])/gm, '\\$1' ) - .replace( regex, '[$$](https://bugs.mojang.com/browse/$$$)' ); + .replace( regex, '[$$](https://mojira.atlassian.net/browse/$$$)' ); } }