aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-04-19 14:42:32 +0200
committerKim Alvefur <zash@zash.se>2013-04-19 14:42:32 +0200
commite9a56e7e4bade9ea7e942abc100d026e503df14f (patch)
tree7dfc363e6ecf609a3504e70e9d87d2da74c8f49f
parent71120cf0227edd516932f9037da61e70f47a3d07 (diff)
downloadprosody-e9a56e7e4bade9ea7e942abc100d026e503df14f.tar.gz
prosody-e9a56e7e4bade9ea7e942abc100d026e503df14f.zip
moduleapi: Make module:open_store() open a store named after the calling module by default
-rw-r--r--core/moduleapi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index a8e6881e..30360f73 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -338,7 +338,7 @@ function api:load_resource(path, mode)
end
function api:open_store(name, type)
- return storagemanager.open(self.host, name, type);
+ return storagemanager.open(self.host, name or self.name, type);
end
return api;