aboutsummaryrefslogtreecommitdiffstats
path: root/core
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
commit2dd7b5717587d249dbda1335be3b5975a1c96e59 (patch)
treea96c88e3ea724fee4e86b1d28c5da9ad1492f47d /core
parentdf727e79fa3b95a6a2663a0a29a5832693ddc4c6 (diff)
downloadprosody-2dd7b5717587d249dbda1335be3b5975a1c96e59.tar.gz
prosody-2dd7b5717587d249dbda1335be3b5975a1c96e59.zip
core.moduleapi: Uppercase "IQ stanza" for consistency
It's written like that elsewhere in the send_iq method
Diffstat (limited to 'core')
-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