add missing semicolons (#7238)

This commit is contained in:
chansizzle 2025-01-30 22:40:21 -07:00 committed by GitHub
parent a2fc7dff1d
commit e8f8e2cfc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -418,9 +418,9 @@ log = require "resources.functions.log".ring_group
local sql = "SELECT * FROM v_email_templates ";
sql = sql .. "WHERE (domain_uuid = :domain_uuid or domain_uuid is null) ";
sql = sql .. "AND template_language = :template_language ";
sql = sql .. "AND template_category = 'missed' "
sql = sql .. "AND template_enabled = 'true' "
sql = sql .. "ORDER BY domain_uuid DESC "
sql = sql .. "AND template_category = 'missed' ";
sql = sql .. "AND template_enabled = 'true' ";
sql = sql .. "ORDER BY domain_uuid DESC ";
local params = {domain_uuid = domain_uuid, template_language = default_language.."-"..default_dialect};
if (debug["sql"]) then
freeswitch.consoleLog("notice", "[voicemail] SQL: " .. sql .. "; params:" .. json.encode(params) .. "\n");