mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_storage_{none,internal,sql}: Return error for unsupported (everything but keyval) store types
This commit is contained in:
parent
578ceff99e
commit
2ba9c6ce77
3 changed files with 11 additions and 5 deletions
|
@ -380,10 +380,10 @@ end
|
|||
local driver = {};
|
||||
|
||||
function driver:open(store, typ)
|
||||
if not typ then -- default key-value store
|
||||
return setmetatable({ store = store }, keyval_store);
|
||||
if typ and typ ~= "keyval" then
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
return nil, "unsupported-store";
|
||||
return setmetatable({ store = store }, keyval_store);
|
||||
end
|
||||
|
||||
function driver:stores(username)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue