feat(script): add repeat interval for script failure and exec-if

This commit is contained in:
indev
2022-03-06 15:34:12 +07:00
committed by Patrick Ziegler
parent 50eac859fd
commit 5b2de60353
5 changed files with 20 additions and 13 deletions

View File

@ -31,7 +31,9 @@ namespace modules {
static constexpr auto FORMAT_FAIL = "format-fail";
const bool m_tail;
const script_runner::interval m_interval{0};
const script_runner::interval m_interval_success{0};
const script_runner::interval m_interval_fail{0};
const script_runner::interval m_interval_if{0};
script_runner m_runner;