From: Kim Alvefur Date: Fri, 19 Apr 2013 12:42:32 +0000 (+0200) Subject: moduleapi: Make module:open_store() open a store named after the calling module by... X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=e855231f8866a72b5c74e05e6985329a30744e59;p=prosody.git moduleapi: Make module:open_store() open a store named after the calling module by default --- 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;