diff --git a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js index 4643180..9214657 100644 --- a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js +++ b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js @@ -11,7 +11,7 @@ const STATUS_COLORS = { WARNING: '#ff9800' }; -async function safeExec(command, args = [], timeout = 3000) { +async function safeExec(command, args = [], timeout = 5000) { try { const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), timeout);