mirror of
https://github.com/Equicord/Equicord.git
synced 2025-05-11 18:05:37 +02:00
Merge remote-tracking branch 'upstream/dev' into dev
Some checks are pending
Test / Test (push) Waiting to run
Some checks are pending
Test / Test (push) Waiting to run
This commit is contained in:
commit
14d4e89f1d
1 changed files with 5 additions and 41 deletions
|
@ -19,53 +19,17 @@
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
|
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "NoUnblockToJump",
|
name: "NoUnblockToJump",
|
||||||
description: "Allows you to jump to messages of blocked users without unblocking them",
|
description: "Allows you to jump to messages of blocked users without unblocking them",
|
||||||
authors: [Devs.dzshn],
|
authors: [Devs.dzshn],
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
// Clicking on search results to jump
|
find: "#{intl::UNIGNORE_TO_JUMP_BODY}",
|
||||||
find: '.id,"Search Results"',
|
replacement: {
|
||||||
replacement: [
|
match: /return \i\.\i\.isBlockedForMessage\(/,
|
||||||
{
|
replace: "return true;$&"
|
||||||
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"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue