diff options
author | Badlop <badlop@process-one.net> | 2009-06-16 17:46:12 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-06-16 17:46:12 +0000 |
commit | 0047e4192b90b679058c507a28325f2f05936626 (patch) | |
tree | 742dedd85c66e1da631b8881dc6490a44a75d69b /src/web | |
parent | Migration code for people using previous version of the HTTP binding module (... (diff) |
Bugfix when table does not exist (thanks to Justin Kirby)
SVN Revision: 2231
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/ejabberd_http_bind.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/ejabberd_http_bind.erl b/src/web/ejabberd_http_bind.erl index b0204c1cc..8c3826d91 100644 --- a/src/web/ejabberd_http_bind.erl +++ b/src/web/ejabberd_http_bind.erl @@ -4,12 +4,12 @@ %%% Purpose : Implements XMPP over BOSH (XEP-0205) (formerly known as %%% HTTP Binding) %%% Created : 21 Sep 2005 by Stefan Strigler <steve@zeank.in-berlin.de> -%%% Id : $Id: ejabberd_http_bind.erl 430 2007-11-27 22:03:44Z badlop $ +%%% Id : $Id: ejabberd_http_bind.erl 431 2007-11-28 18:52:39Z badlop $ %%%---------------------------------------------------------------------- -module(ejabberd_http_bind). -author('steve@zeank.in-berlin.de'). --vsn('$Rev: 430 $ '). +-vsn('$Rev: 431 $ '). -behaviour(gen_fsm). @@ -929,7 +929,7 @@ setup_database() -> {attributes, record_info(fields, http_bind)}]). migrate_database() -> - case mnesia:table_info(http_bind, attributes) of + case catch mnesia:table_info(http_bind, attributes) of [id, pid, to, hold, wait, version] -> ok; _ -> |