diff --git a/4chan_x.user.js b/4chan_x.user.js index 72b1466ae..518e38337 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2497,7 +2497,7 @@ location.pathname = "/" + g.BOARD + "/res/" + postID; } else { QR.cooldown.auto = QR.replies.length > 1; - QR.cooldown.set(/sage/i.test(reply.email) ? 60 : 30); + QR.cooldown.set(g.BOARD === 'q' || /sage/i.test(reply.email) ? 60 : 30); if (Conf['Open Reply in New Tab'] && !g.REPLY && !QR.cooldown.auto) { $.open("//boards.4chan.org/" + g.BOARD + "/res/" + threadID + "#p" + postID); } diff --git a/changelog b/changelog index 79471f118..0f1747e57 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Fix cooldown on /q/. 2.34.4 - Mayhem diff --git a/script.coffee b/script.coffee index 0f09ec60d..2584ef6b6 100644 --- a/script.coffee +++ b/script.coffee @@ -1960,7 +1960,7 @@ QR = else # Enable auto-posting if we have stuff to post, disable it otherwise. QR.cooldown.auto = QR.replies.length > 1 - QR.cooldown.set if /sage/i.test reply.email then 60 else 30 + QR.cooldown.set if g.BOARD is 'q' or /sage/i.test reply.email then 60 else 30 if Conf['Open Reply in New Tab'] && !g.REPLY && !QR.cooldown.auto $.open "//boards.4chan.org/#{g.BOARD}/res/#{threadID}#p#{postID}"