aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-10-05 18:06:04 +0200
committerKim Alvefur <zash@zash.se>2017-10-05 18:06:04 +0200
commit4730aead9e3dcc0096ffb73f9b31f87b0069ad8c (patch)
tree691fe346b53e4d17c388e45cd54dd15bf8f6bb06 /plugins/mod_storage_sql.lua
parent5970fb161e2c811c59d0b0a512c8f8a756a7814a (diff)
parent621ee7226fc62b872cb6b74797b97ee509d620c8 (diff)
downloadprosody-4730aead9e3dcc0096ffb73f9b31f87b0069ad8c.tar.gz
prosody-4730aead9e3dcc0096ffb73f9b31f87b0069ad8c.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r--plugins/mod_storage_sql.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua
index e53deef3..4c65b4f4 100644
--- a/plugins/mod_storage_sql.lua
+++ b/plugins/mod_storage_sql.lua
@@ -415,8 +415,8 @@ end
function driver:purge(username)
return engine:transaction(function()
- local stmt,err = engine:delete("DELETE FROM \"prosody\" WHERE \"host\"=? AND \"user\"=?", host, username);
- return true, err;
+ engine:delete("DELETE FROM \"prosody\" WHERE \"host\"=? AND \"user\"=?", host, username);
+ engine:delete("DELETE FROM \"prosodyarchive\" WHERE \"host\"=? AND \"user\"=?", host, username);
end);
end