mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.datamanager: Fix missing pack format when reading first index entry
Thanks MattJ
This commit is contained in:
parent
7adda6e938
commit
934bd2a65e
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,7 @@ local function get_list_index(username, host, datastore)
|
|||
end
|
||||
|
||||
if ih then
|
||||
local first_length = string.unpack(ih:read(index_item_size));
|
||||
local first_length = string.unpack(index_fmt, ih:read(index_item_size));
|
||||
return setmetatable({ file = ih; { start = 0; length = first_length } }, index_mt);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue