From de6374fdb3c8d8c3bf238ec186342843b4c0a3c2 Mon Sep 17 00:00:00 2001 From: SubleXBle <51033045+SubleXBle@users.noreply.github.com> Date: Sat, 16 Aug 2025 19:16:04 +0200 Subject: [PATCH] Update action-collector.js --- assets/js/action-collector.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/js/action-collector.js b/assets/js/action-collector.js index 8d25481..dd07366 100644 --- a/assets/js/action-collector.js +++ b/assets/js/action-collector.js @@ -35,8 +35,7 @@ function collectAndExecuteActions(ips, action, jails = []) { const prefix = `[${action.toUpperCase()}] `; const message = data.message || 'No message returned.'; const type = data.type || (data.success ? 'success' : 'error'); - // when Notification - display 10 Seconds - const duration = (action === 'report') ? 10000 : 5000; + const duration = (action === 'report') ? 5000 : 5000; showNotification(prefix + message, type, duration); }) .catch(err => {