diff options
author | Kim Alvefur <zash@zash.se> | 2013-04-19 14:44:08 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-04-19 14:44:08 +0200 |
commit | dffd8d701d680d9d9c30dcf3ed384cb703604eed (patch) | |
tree | 7dfc363e6ecf609a3504e70e9d87d2da74c8f49f | |
parent | 5d47f4cd480305344b4fbc71c1cf942706444f31 (diff) | |
parent | cde9a241329154a18fb46eb43fd19f21b5e7b665 (diff) | |
download | prosody-dffd8d701d680d9d9c30dcf3ed384cb703604eed.tar.gz prosody-dffd8d701d680d9d9c30dcf3ed384cb703604eed.zip |
Merge 0.9->trunk
-rw-r--r-- | core/moduleapi.lua | 2 |
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; |