mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Handle failure to detect connection encoding
Silences a luacheck warning about an unused variable
This commit is contained in:
parent
613e3eb3dc
commit
b0361006e1
1 changed files with 3 additions and 0 deletions
|
@ -335,6 +335,9 @@ function engine:set_encoding() -- to UTF-8
|
|||
local ok, actual_charset = self:transaction(function ()
|
||||
return self:select"SHOW SESSION VARIABLES LIKE 'character_set_client'";
|
||||
end);
|
||||
if not ok then
|
||||
return false, "Failed to detect connection encoding";
|
||||
end
|
||||
local charset_ok = true;
|
||||
for row in actual_charset do
|
||||
if row[2] ~= charset then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue