migrator/prosody_files: Don't choke on empty data stores for a user (thanks @eoranged)

This commit is contained in:
Matthew Wild 2011-06-02 17:18:23 +01:00
parent 0193bc555b
commit aded9653e0

View file

@ -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;