diff --git a/4chan_x.user.js b/4chan_x.user.js index 18ea61cd5..aded42c90 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4296,7 +4296,7 @@ if (post.isInlined && !post.isCrosspost) { return; } - _ref = $$('.quote.deadlink', post.blockquote); + _ref = $$('.deadlink', post.blockquote); for (_i = 0, _len = _ref.length; _i < _len; _i++) { deadlink = _ref[_i]; if (deadlink.parentNode.className === 'prettyprint') { diff --git a/changelog b/changelog index 0d7755904..381c233a5 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Fix dead quotes. 2.37.1 - noface diff --git a/script.coffee b/script.coffee index 5a49378a0..8b18dc17c 100644 --- a/script.coffee +++ b/script.coffee @@ -3517,7 +3517,7 @@ Quotify = Main.callbacks.push @node node: (post) -> return if post.isInlined and not post.isCrosspost - for deadlink in $$ '.quote.deadlink', post.blockquote + for deadlink in $$ '.deadlink', post.blockquote if deadlink.parentNode.className is 'prettyprint' $.replace deadlink, Array::slice.call deadlink.childNodes