diff options
Diffstat (limited to 'src/mod_carboncopy.erl')
-rw-r--r-- | src/mod_carboncopy.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mod_carboncopy.erl b/src/mod_carboncopy.erl index ebf1d0b0f..bb20bd2f9 100644 --- a/src/mod_carboncopy.erl +++ b/src/mod_carboncopy.erl @@ -279,8 +279,5 @@ list(User, Server) -> Mod:list(User, Server). mod_opt_type(iqdisc) -> fun gen_iq_handler:check_type/1; -mod_opt_type(db_type) -> - fun(internal) -> mnesia; - (mnesia) -> mnesia - end; +mod_opt_type(db_type) -> fun(T) -> ejabberd_config:v_db(?MODULE, T) end; mod_opt_type(_) -> [db_type, iqdisc]. |