diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 0cf7863cc..8a8405c20 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -5437,7 +5437,7 @@ if (Conf['Mark Quotes of You']) { markers.push('You'); } - $.addClass(this.nodes.root, 'quotesYou'); + $.addClass(post.nodes.root, 'quotesYou'); } if (board.ID === boardID) { if (Conf['Mark OP Quotes'] && thread.ID === postID) { diff --git a/builds/crx/script.js b/builds/crx/script.js index 4d27d1492..4776c06f9 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -5489,7 +5489,7 @@ if (Conf['Mark Quotes of You']) { markers.push('You'); } - $.addClass(this.nodes.root, 'quotesYou'); + $.addClass(post.nodes.root, 'quotesYou'); } if (board.ID === boardID) { if (Conf['Mark OP Quotes'] && thread.ID === postID) { diff --git a/src/Quotelinks/QuoteMarkers.coffee b/src/Quotelinks/QuoteMarkers.coffee index 8c4627174..f1c1128d5 100644 --- a/src/Quotelinks/QuoteMarkers.coffee +++ b/src/Quotelinks/QuoteMarkers.coffee @@ -23,7 +23,7 @@ QuoteMarkers = if QR.db.get {boardID, threadID, postID} markers.push 'You' if Conf['Mark Quotes of You'] - $.addClass @nodes.root, 'quotesYou' + $.addClass post.nodes.root, 'quotesYou' if board.ID is boardID if Conf['Mark OP Quotes'] and thread.ID is postID