diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-11 19:15:46 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-11 19:15:46 +0100 |
commit | 9423dbfdb33e0ef5cd97378b2bc6f61d6a6cbf67 (patch) | |
tree | d4330eaba675c306f91f51be0cd8baa110e692e2 /plugins/mod_storage_sql.lua | |
parent | 93aa49462f62e54b5474a5e0344b0d4e71b946b6 (diff) | |
download | prosody-9423dbfdb33e0ef5cd97378b2bc6f61d6a6cbf67.tar.gz prosody-9423dbfdb33e0ef5cd97378b2bc6f61d6a6cbf67.zip |
mod_storage_sql: Have :users() throw an error on failure instead of returning non-iterator values
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index 395e937d..5f02aa06 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -142,7 +142,7 @@ function keyval_store:users() ]]; return engine:select(select_sql, host, self.store); end); - if not ok then return ok, result end + if not ok then error(result); end return iterator(result); end |