Software /
code /
prosody
Diff
core/storagemanager.lua @ 5147:0ca4185a3d39
storagemanager: Fix argument (Thanks Maranda)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 19 Sep 2012 16:39:19 +0200 |
parent | 5133:1443d1c37c6c |
child | 5137:df9665f3dfd8 |
line wrap: on
line diff
--- a/core/storagemanager.lua Wed Sep 19 15:12:18 2012 +0200 +++ b/core/storagemanager.lua Wed Sep 19 16:39:19 2012 +0200 @@ -123,7 +123,7 @@ return get_driver(host):stores(username, typ); end function datamanager.purge(username, host) - return purge(username); + return purge(username, host); end return _M;