diff --git a/4chan-X.user.js b/4chan-X.user.js index ba6957b98..276b7d110 100644 --- a/4chan-X.user.js +++ b/4chan-X.user.js @@ -4173,6 +4173,7 @@ if ($.hasClass(a, 'quotelink')) { this.nodes.quotelinks.push(a); } + a = null; } } }; diff --git a/CHANGELOG.md b/CHANGELOG.md index eb6637b33..463426d76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +- Fixed a bug where dead quotelinks would disappear. + ### 3.0.1 - *2013-04-08* - Added the possibility to combine board-list toggle and custom text. diff --git a/src/features.coffee b/src/features.coffee index ba7346e87..fdbbab82d 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -2590,6 +2590,7 @@ Quotify = $.replace deadlink, a if $.hasClass a, 'quotelink' @nodes.quotelinks.push a + a = null return QuoteInline =