diff options
author | Alexey Shchepin <alexey@process-one.net> | 2007-09-02 15:56:17 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2007-09-02 15:56:17 +0000 |
commit | 5994816a271e8052e3b11dd58bd733d5c4cd2d51 (patch) | |
tree | c66d22ba5075b37122d5757c4fd71af22aca3ee5 | |
parent | * src/mod_muc/mod_muc_room.erl: Added logging of MUC admin/owner (diff) |
* src/jlib.erl: Removed http_base_64:decode call
SVN Revision: 908
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/jlib.erl | 8 |
2 files changed, 2 insertions, 8 deletions
@@ -1,5 +1,7 @@ 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 queries diff --git a/src/jlib.erl b/src/jlib.erl index af1fcabad..74369cf22 100644 --- a/src/jlib.erl +++ b/src/jlib.erl @@ -566,14 +566,6 @@ check_list(List) -> % 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, C /= $ , C /= $\t, |