From d9a5671f9f2a3014df0975838c54366bbc4fc8fe Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 15 Jan 2024 02:28:26 -0500 Subject: [PATCH] remove https://hastebin.com and other broken haste urls, add own instance --- lib/utils/BotClientUtils.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/utils/BotClientUtils.ts b/lib/utils/BotClientUtils.ts index 574b7bde..47bfe433 100644 --- a/lib/utils/BotClientUtils.ts +++ b/lib/utils/BotClientUtils.ts @@ -34,14 +34,12 @@ export class BotClientUtils { * The hastebin urls used to post to hastebin, attempts to post in order */ #hasteURLs: string[] = [ + 'https://haste.tanzanite.dev/', 'https://hst.sh', - // 'https://hasteb.in', - 'https://hastebin.com', + 'https://hasteb.in', 'https://mystb.in', - 'https://haste.clicksminuteper.net', 'https://paste.pythondiscord.com', 'https://haste.unbelievaboat.com' - // 'https://haste.tyman.tech' ]; public constructor(private readonly client: Client) {}