diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-22 14:29:39 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-22 14:29:39 +0200 |
commit | f0541eb88606f9562107c2fe205e9a8522815f4a (patch) | |
tree | a8119cc1fad92159a83b28c3259bbdbeac0534e0 /plugins/mod_scansion_record.lua | |
parent | 26bcf9c7a74610ed8c2c0bca856b993b648cddf3 (diff) | |
download | prosody-f0541eb88606f9562107c2fe205e9a8522815f4a.tar.gz prosody-f0541eb88606f9562107c2fe205e9a8522815f4a.zip |
mod_scansion_record: Fix missed rename of file handle
Diffstat (limited to 'plugins/mod_scansion_record.lua')
-rw-r--r-- | plugins/mod_scansion_record.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_scansion_record.lua b/plugins/mod_scansion_record.lua index 0f834c41..e5f0b4da 100644 --- a/plugins/mod_scansion_record.lua +++ b/plugins/mod_scansion_record.lua @@ -72,5 +72,5 @@ module:hook("resource-bind", function (event) end); module:hook_global("server-stopping", function () - fh:close(); + scan:close(); end); |