aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_websocket.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-16 17:52:29 +0200
committerKim Alvefur <zash@zash.se>2017-05-16 17:52:29 +0200
commitbd52588649aae5fffa05f1f60d3a9dcd27281271 (patch)
tree2c7c4043c0abf9a7aaf87aa3593405da8db3f760 /plugins/mod_websocket.lua
parent25efb61c2484b89a7f3f1589667ab64f4cb577f2 (diff)
downloadprosody-bd52588649aae5fffa05f1f60d3a9dcd27281271.tar.gz
prosody-bd52588649aae5fffa05f1f60d3a9dcd27281271.zip
mod_websocket: Convert set to string (syslog sink needs a better fix)
Diffstat (limited to 'plugins/mod_websocket.lua')
-rw-r--r--plugins/mod_websocket.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua
index d545e708..ed73962d 100644
--- a/plugins/mod_websocket.lua
+++ b/plugins/mod_websocket.lua
@@ -334,7 +334,7 @@ function module.add_host(module)
-- This might be weird with random load order
local_cross_domain:exclude(cross_domain);
cross_domain:include(local_cross_domain);
- module:log("debug", "cross_domain = %s", cross_domain);
+ module:log("debug", "cross_domain = %s", tostring(cross_domain));
function module.unload()
cross_domain:exclude(local_cross_domain);
end