aboutsummaryrefslogtreecommitdiffstats
path: root/core/storagemanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-09-19 16:39:19 +0200
committerKim Alvefur <zash@zash.se>2012-09-19 16:39:19 +0200
commitc6dacdb1e11bee61b57eca03cb6d26542bb19c43 (patch)
treeefc1991b30e59d678be6b9298a4a91ba9ecd14e1 /core/storagemanager.lua
parent7e4ba4eda5fdc6f7a70b7b17e3b7a3cb1fa88704 (diff)
downloadprosody-c6dacdb1e11bee61b57eca03cb6d26542bb19c43.tar.gz
prosody-c6dacdb1e11bee61b57eca03cb6d26542bb19c43.zip
storagemanager: Fix argument (Thanks Maranda)
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r--core/storagemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index d744700a..97ff084f 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -123,7 +123,7 @@ function datamanager.stores(username, host, typ)
return get_driver(host):stores(username, typ);
end
function datamanager.purge(username, host)
- return purge(username);
+ return purge(username, host);
end
return _M;