diff options
author | Kim Alvefur <zash@zash.se> | 2014-06-21 15:05:52 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-06-21 15:05:52 +0200 |
commit | 9c0da6a29b9d6260909c84f02355488dbd4e414d (patch) | |
tree | b2f59bdc9faeaf18b51e6b13f3b78a625c8a7510 /plugins/mod_storage_internal.lua | |
parent | 3f4c83225b50777da921a2a11aac6d07296b2b8c (diff) | |
parent | 0226460cacd55adf96cb46f57f6a010181f445c5 (diff) | |
download | prosody-9c0da6a29b9d6260909c84f02355488dbd4e414d.tar.gz prosody-9c0da6a29b9d6260909c84f02355488dbd4e414d.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 972ecbee..ade4f0a6 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -6,6 +6,9 @@ local driver = {}; local driver_mt = { __index = driver }; function driver:open(store, typ) + if typ and typ ~= "keyval" then + return nil, "unsupported-store"; + end return setmetatable({ store = store, type = typ }, driver_mt); end function driver:get(user) |