diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 5b818d23d..31c09ba8c 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4957,7 +4957,7 @@ for (ID in _ref) { post = _ref[ID]; if (post.cb) { - post.cb.call(post); + post.cb(); } } return QuoteThreading.hasRun = true; diff --git a/builds/crx/script.js b/builds/crx/script.js index 44692e17a..96890233e 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4960,7 +4960,7 @@ for (ID in _ref) { post = _ref[ID]; if (post.cb) { - post.cb.call(post); + post.cb(); } } return QuoteThreading.hasRun = true; diff --git a/src/Quotelinks/QuoteThreading.coffee b/src/Quotelinks/QuoteThreading.coffee index 94105c9b5..575a7c5f8 100755 --- a/src/Quotelinks/QuoteThreading.coffee +++ b/src/Quotelinks/QuoteThreading.coffee @@ -27,7 +27,7 @@ QuoteThreading = setup: -> $.off d, '4chanXInitFinished', QuoteThreading.setup - post.cb.call post for ID, post of g.posts when post.cb + post.cb() for ID, post of g.posts when post.cb QuoteThreading.hasRun = true