From 97af9f8d98aa0ad9c210b9314214d931efd44ff1 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Tue, 6 May 2025 18:16:15 -0300 Subject: [PATCH] NoUnblockToJump: Fix for latest changes --- src/plugins/noUnblockToJump/index.ts | 46 +++------------------------- 1 file changed, 5 insertions(+), 41 deletions(-) diff --git a/src/plugins/noUnblockToJump/index.ts b/src/plugins/noUnblockToJump/index.ts index 4dbbe462..cb379bf8 100644 --- a/src/plugins/noUnblockToJump/index.ts +++ b/src/plugins/noUnblockToJump/index.ts @@ -19,53 +19,17 @@ import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; - export default definePlugin({ name: "NoUnblockToJump", description: "Allows you to jump to messages of blocked users without unblocking them", authors: [Devs.dzshn], patches: [ { - // Clicking on search results to jump - find: '.id,"Search Results"', - replacement: [ - { - match: /if\(.{1,40}\)(.{1,10}\.show\({.{1,50}#{intl::UNBLOCK_TO_JUMP_TITLE})/, - replace: "if(false)$1" - }, - { - match: /if\(.{1,10}\)(.{1,10}\.show\({.{1,50}#{intl::UNIGNORE_TO_JUMP_TITLE})/, - replace: "if(false)$1" - }, - ] - }, - { - // Jump buttton in top right corner of messages - find: "renderJumpButton()", - replacement: [ - { - match: /if\(.{1,10}\)(.{1,10}\.show\({.{1,50}#{intl::UNBLOCK_TO_JUMP_TITLE})/, - replace: "if(false)$1" - }, - { - match: /if\(.{1,10}\)(.{1,10}\.show\({.{1,50}#{intl::UNIGNORE_TO_JUMP_TITLE})/, - replace: "if(false)$1" - }, - ] - }, - { - // Clicking on replied messages to jump - find: '("interactionUsernameProfile', - replacement: [ - { - match: /.\?(.{1,10}\.show\({.{1,50}#{intl::UNBLOCK_TO_JUMP_TITLE})/, - replace: "false?$1" - }, - { - match: /.\?(.{1,10}\.show\({.{1,50}#{intl::UNIGNORE_TO_JUMP_TITLE})/, - replace: "false?$1" - }, - ] + find: "#{intl::UNIGNORE_TO_JUMP_BODY}", + replacement: { + match: /return \i\.\i\.isBlockedForMessage\(/, + replace: "return true;$&" + } } ] });