Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-10-27 08:12:24 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-10-27 08:12:24 +0300
commita8238d6a541b5b7d38b854a76422db2a99fe7aa9 (patch)
tree706a5eb3d6051212308e7e3d60bc3b7d5c7a28b6
parent9eb2685f90f28b53c5219e8b188dc97721d5beb9 (diff)
Fix typo
-rw-r--r--src/mod_push.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_push.erl b/src/mod_push.erl
index a57062eb9..7356b1f42 100644
--- a/src/mod_push.erl
+++ b/src/mod_push.erl
@@ -261,7 +261,7 @@ process_iq(#iq{from = #jid{lserver = LServer} = JID,
ok ->
xmpp:make_iq_result(IQ);
{error, db_failure} ->
- Txt = <<"Database, failure">>,
+ Txt = <<"Database failure">>,
xmpp:make_error(IQ, xmpp:err_internal_server_error(Txt, Lang));
{error, notfound} ->
Txt = <<"User session not found">>,
@@ -276,7 +276,7 @@ process_iq(#iq{from = #jid{lserver = LServer} = JID,
ok ->
xmpp:make_iq_result(IQ);
{error, db_failure} ->
- Txt = <<"Database, failure">>,
+ Txt = <<"Database failure">>,
xmpp:make_error(IQ, xmpp:err_internal_server_error(Txt, Lang));
{error, notfound} ->
Txt = <<"Push record not found">>,