24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02:00

* src/jlib.erl: Removed http_base_64:decode call

SVN Revision: 908
This commit is contained in:
Alexey Shchepin 2007-09-02 15:56:17 +00:00
parent 978b7aea12
commit 5994816a27
2 changed files with 2 additions and 8 deletions

View File

@ -1,5 +1,7 @@
2007-09-02 Alexey Shchepin <alexey@process-one.net> 2007-09-02 Alexey Shchepin <alexey@process-one.net>
* src/jlib.erl: Removed http_base_64:decode call
* src/mod_muc/mod_muc_room.erl: Added logging of MUC admin/owner * src/mod_muc/mod_muc_room.erl: Added logging of MUC admin/owner
queries queries

View File

@ -566,14 +566,6 @@ check_list(List) ->
% %
decode_base64(S) -> decode_base64(S) ->
case catch http_base_64:decode(S) of
{'EXIT', _Err} ->
decode_base64_old(S);
Res ->
Res
end.
decode_base64_old(S) ->
decode1_base64([C || C <- S, decode1_base64([C || C <- S,
C /= $ , C /= $ ,
C /= $\t, C /= $\t,