Fix. Close database object in vm/forward_to_extension.lua (#2196)

This commit is contained in:
Alexey Melnichuk 2016-11-26 09:01:43 +03:00 committed by FusionPBX
parent 21b63b086b
commit c28fbf9c6a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@
if (storage_type == "base64") then
local dbh = Database.new('system', 'base64')
dbh:query(sql, params);
env:release();
dbh:release();
else
dbh:query(sql, params);
end