From 88922716d9c010a38fa5fc0036524bd6028c845e Mon Sep 17 00:00:00 2001 From: Vipra Date: Tue, 21 May 2024 19:10:44 +0200 Subject: [PATCH] only add specific status- classes to processing (status-public, status-unlisted, etc.) adding generic status class causes double proplates on Mastodon v4.3 in some cases --- src/content_scripts/protoots.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content_scripts/protoots.js b/src/content_scripts/protoots.js index 9be013c..633ed9b 100644 --- a/src/content_scripts/protoots.js +++ b/src/content_scripts/protoots.js @@ -89,7 +89,10 @@ function main() { hasClasses( n, "detailed-status", - "status", + "status-public", + "status-unlisted", + "status-private", + "status-direct", "conversation", "account-authorize", "notification",