aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-08-21 23:15:05 +0200
committerKim Alvefur <zash@zash.se>2019-08-21 23:15:05 +0200
commit790a10f47da55d1b6b5eab489dd082eaca942b2a (patch)
treea96c88e3ea724fee4e86b1d28c5da9ad1492f47d /core/moduleapi.lua
parent6fbdb269bdfc377904dd79a9a11be690ee896e4e (diff)
downloadprosody-790a10f47da55d1b6b5eab489dd082eaca942b2a.tar.gz
prosody-790a10f47da55d1b6b5eab489dd082eaca942b2a.zip
core.moduleapi: Uppercase "IQ stanza" for consistency
It's written like that elsewhere in the send_iq method
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index b81bbeb2..dcdc41a4 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -407,7 +407,7 @@ function api:send_iq(stanza, origin, timeout)
if iq_cache:get(cache_key) then
reject(errutil.new({
type = "modify", condition = "conflict",
- text = "iq stanza id attribute already used",
+ text = "IQ stanza id attribute already used",
}));
return;
end