diff options
author | 2019-12-02 21:15:48 -0600 | |
---|---|---|
committer | 2019-12-02 21:17:42 -0600 | |
commit | c6dcf7e6bea2658f1dfc4d4fe62d7c5ef85138b2 (patch) | |
tree | a423de475e6321dc190a19acd0fbb5405ca711b1 /plugins/data/load_dat.lua | |
parent | 8300cf72547e665c37b6ed5a3ebd07266fa234f5 (diff) |
hiscore.dat: Updates [Leezer]
plugins/data: various fixes (nw)
Diffstat (limited to 'plugins/data/load_dat.lua')
-rw-r--r-- | plugins/data/load_dat.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/data/load_dat.lua b/plugins/data/load_dat.lua index 172f2ef71ca..024dbac0ad3 100644 --- a/plugins/data/load_dat.lua +++ b/plugins/data/load_dat.lua @@ -46,7 +46,7 @@ function datfile.open(file, vertag, fixupcb) if not fh and dbver then -- data in database but missing file, just use what we have - return read, dbver + return readret(file), dbver elseif not fh then return nil elseif not dbver then @@ -77,7 +77,7 @@ function datfile.open(file, vertag, fixupcb) end if ver == dbver then fh:close() - return read, dbver + return readret(file), dbver end if dbver then |