fix(vcDoubleClick): exclude text channel mentions (#159)

This commit is contained in:
Nico 2022-10-25 18:09:21 +02:00 committed by GitHub
parent 2f46b934c9
commit d6fe937a70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export default definePlugin({
find: 'className:"channelMention",iconType:(',
replacement: {
match: /onClick:(.{1,3}),/,
replace: "onClick:(_vcEv)=>_vcEv.detail>=2&&($1)(),",
replace: "onClick:(_vcEv)=>_vcEv.detail>=2||_vcEv.target.className.includes('MentionText')&&($1)(),",
}
}
],