aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-09-22 14:29:39 +0200
committerKim Alvefur <zash@zash.se>2018-09-22 14:29:39 +0200
commitf0541eb88606f9562107c2fe205e9a8522815f4a (patch)
treea8119cc1fad92159a83b28c3259bbdbeac0534e0 /plugins
parent26bcf9c7a74610ed8c2c0bca856b993b648cddf3 (diff)
downloadprosody-f0541eb88606f9562107c2fe205e9a8522815f4a.tar.gz
prosody-f0541eb88606f9562107c2fe205e9a8522815f4a.zip
mod_scansion_record: Fix missed rename of file handle
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_scansion_record.lua2
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);