mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
migrator/prosody_files: Don't choke on empty data stores for a user (thanks @eoranged)
This commit is contained in:
parent
0193bc555b
commit
aded9653e0
1 changed files with 6 additions and 1 deletions
|
@ -98,7 +98,12 @@ function reader(input)
|
|||
local x = iter();
|
||||
if x then
|
||||
dm.set_data_path(path);
|
||||
x.data = assert(dm.load(x.user, x.host, x.store));
|
||||
local err;
|
||||
x.data, err = dm.load(x.user, x.host, x.store);
|
||||
if x.data == nil and err then
|
||||
error(("Error loading data at path %s for %s@%s (%s store)")
|
||||
:format(path, x.user or "<nil>", x.host or "<nil>", x.store or "<nil>"), 0);
|
||||
end
|
||||
return x;
|
||||
end
|
||||
end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue