mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
datamanager: Fixed incorrect callback result checking
This commit is contained in:
parent
f101f253b4
commit
9dd7b702f0
1 changed files with 4 additions and 4 deletions
|
@ -62,7 +62,7 @@ end
|
||||||
local function callback(username, host, datastore, data)
|
local function callback(username, host, datastore, data)
|
||||||
for _, f in ipairs(callbacks) do
|
for _, f in ipairs(callbacks) do
|
||||||
username, host, datastore, data = f(username, host, datastore, data);
|
username, host, datastore, data = f(username, host, datastore, data);
|
||||||
if not username then break; end
|
if username == false then break; end
|
||||||
end
|
end
|
||||||
|
|
||||||
return username, host, datastore, data;
|
return username, host, datastore, data;
|
||||||
|
@ -123,7 +123,7 @@ function store(username, host, datastore, data)
|
||||||
end
|
end
|
||||||
|
|
||||||
username, host, datastore, data = callback(username, host, datastore, data);
|
username, host, datastore, data = callback(username, host, datastore, data);
|
||||||
if not username then
|
if username == false then
|
||||||
return true; -- Don't save this data at all
|
return true; -- Don't save this data at all
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@ end
|
||||||
|
|
||||||
function list_append(username, host, datastore, data)
|
function list_append(username, host, datastore, data)
|
||||||
if not data then return; end
|
if not data then return; end
|
||||||
if callback and callback(username, host, datastore) then return true; end
|
if callback(username, host, datastore) == false then return true; end
|
||||||
-- save the datastore
|
-- save the datastore
|
||||||
local f, msg = io_open(getpath(username, host, datastore, "list", true), "a+");
|
local f, msg = io_open(getpath(username, host, datastore, "list", true), "a+");
|
||||||
if not f then
|
if not f then
|
||||||
|
@ -165,7 +165,7 @@ function list_store(username, host, datastore, data)
|
||||||
if not data then
|
if not data then
|
||||||
data = {};
|
data = {};
|
||||||
end
|
end
|
||||||
if callback and callback(username, host, datastore) then return true; end
|
if callback(username, host, datastore) == false then return true; end
|
||||||
-- save the datastore
|
-- save the datastore
|
||||||
local f, msg = io_open(getpath(username, host, datastore, "list", true), "w+");
|
local f, msg = io_open(getpath(username, host, datastore, "list", true), "w+");
|
||||||
if not f then
|
if not f then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue