mod_invites_bootstrap: Fix parameters to store:set()

This commit is contained in:
Matthew Wild 2021-03-10 12:37:41 +00:00
parent e9e5762936
commit 32a7bc8954
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ local function handle_request(event)
timestamp = os.time();
result = invite.landing_page or invite.uri;
});
local record_ok, record_err = invites_bootstrap_store:set(bootstrap_records);
local record_ok, record_err = invites_bootstrap_store:set(nil, bootstrap_records);
if not record_ok then
module:log("error", "Failed to store bootstrap record: %s", record_err);
return 500;