diff options
author | Kim Alvefur <zash@zash.se> | 2023-10-22 18:57:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-10-22 18:57:28 +0200 |
commit | 76bf26057e3bf6fe5620114bc438512bba9e9afe (patch) | |
tree | 7f63175a8374425caf1e528ad326cf287f540be1 /teal-src | |
parent | ade700b2d62e8b60b98284923e140632fde1df07 (diff) | |
download | prosody-76bf26057e3bf6fe5620114bc438512bba9e9afe.tar.gz prosody-76bf26057e3bf6fe5620114bc438512bba9e9afe.zip |
mod_cron: Fix missing restore method in Teal record definition
Diffstat (limited to 'teal-src')
-rw-r--r-- | teal-src/prosody/plugins/mod_cron.tl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/teal-src/prosody/plugins/mod_cron.tl b/teal-src/prosody/plugins/mod_cron.tl index 5c052f2f..6c69ef7d 100644 --- a/teal-src/prosody/plugins/mod_cron.tl +++ b/teal-src/prosody/plugins/mod_cron.tl @@ -21,6 +21,7 @@ local record task_spec last : integer run : function (task_spec, integer) save : function (task_spec, integer) + restore : function (task_spec, integer) end local record task_event |