From 76efbc6334498e2fa3d5d13c46901d009fea8c86 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 2 Apr 2026 17:12:02 -0700 Subject: [PATCH] Refactor: Lower run ended ntfy alert priority to 2 --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index 9049a62..1a4a27a 100644 --- a/run.js +++ b/run.js @@ -118,7 +118,7 @@ function stop(r) { try { r.controller?.abort() } catch {} saveSnapshot(r) bcast(r, { type: 'done' }) - notify(`Run ${r.rid} ended. Duration: ${duration}s`, 3, ['stop_sign']) + notify(`Run ${r.rid} ended. Duration: ${duration}s`, 2, ['stop_sign']) } function fail(r, message) {