From f834c3d01a5b9a110cc79b703b53e51999d727f4 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Mon, 19 May 2025 10:49:50 +0800 Subject: [PATCH] Add links to dashboard pending page for the !pending IRC bot command http://archivebot.com/pending --- bot/brain.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/brain.rb b/bot/brain.rb index 5f1e6b9c..ed7d2306 100644 --- a/bot/brain.rb +++ b/bot/brain.rb @@ -187,7 +187,7 @@ def request_status(m, job) def show_pending(m) if redis.llen('pending') > 10 - privmsg(m, "Too many pending jobs to reply to !pending, please use the dashboard instead.") + privmsg(m, 'Too many pending jobs to reply to !pending, please use the dashboard instead. http://archivebot.com/pending') return end @@ -203,6 +203,7 @@ def show_pending(m) privmsg(m, msg) end + privmsg(m, 'Other pending queues: http://archivebot.com/pending') end def add_note(m, job, note, need_auth=true)