From 47f06b6b9449c4c3f6483c15bb5c31b286631324 Mon Sep 17 00:00:00 2001 From: Glorfindel Date: Sat, 23 Dec 2017 17:10:14 +0100 Subject: [PATCH] Why No Bounty: the system already warns you for your own questions which aren't old enough --- why-no-bounty/why-no-bounty.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/why-no-bounty/why-no-bounty.user.js b/why-no-bounty/why-no-bounty.user.js index d33afa5..2c48684 100644 --- a/why-no-bounty/why-no-bounty.user.js +++ b/why-no-bounty/why-no-bounty.user.js @@ -23,8 +23,8 @@ return; } - // If there's a 'start a bounty' link, we have nothing to do. - if ($("a.bounty-link.bounty").length !== 0) { + // If there's a 'start a bounty' or 'question eligible for bounty in x days' link, we have nothing to do. + if ($("a.bounty-link.bounty").length !== 0 || $("a[href='/help/bounty']").length !== 0) { return; }