chore: Fix PinDMs patch (#1981)

This commit is contained in:
Jack 2023-11-15 13:01:50 -05:00 committed by GitHub
parent af614465a4
commit 3ea6a96715
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,10 +100,10 @@ export default definePlugin({
},
{
// Fix getRowHeight's check for whether this is the DMs section
// section === DMS
match: /===\i\.DMS&&0/,
// section -1 === DMS
replace: "-1$&"
// DMS (inlined) === section
match: /(?<=getRowHeight=\(.{2,50}?)1===\i/,
// DMS (inlined) === section - 1
replace: "$&-1"
},
{
// Override scrollToChannel to properly account for pinned channels