Skip to content

Commit

Permalink
Content store: Fix bugs relating to packages list size
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Dec 26, 2018
1 parent a5197ea commit f12d374
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions builtin/mainmenu/dlg_contentstore.lua
Expand Up @@ -285,7 +285,7 @@ function store.load()

local file = io.open(target, "r")
if file then
store.packages_full = core.parse_json(file:read("*all"))
store.packages_full = core.parse_json(file:read("*all")) or {}
file:close()

for _, package in pairs(store.packages_full) do
Expand Down Expand Up @@ -385,7 +385,7 @@ function store.get_formspec()
end

local formspec
if #store.packages > 0 then
if #store.packages_full > 0 then
formspec = {
"size[12,7;true]",
"position[0.5,0.55]",
Expand Down Expand Up @@ -426,6 +426,12 @@ function store.get_formspec()
}
end

if #store.packages == 0 then
formspec[#formspec + 1] = "label[4,3;"
formspec[#formspec + 1] = fgettext("No results")
formspec[#formspec + 1] = "]"
end

local start_idx = (cur_page - 1) * num_per_page + 1
for i=start_idx, math.min(#store.packages, start_idx+num_per_page-1) do
local package = store.packages[i]
Expand Down Expand Up @@ -570,7 +576,7 @@ function store.handle_submit(this, fields, tabname, tabdata)
end

function create_store_dlg(type)
if not store.loaded then
if not store.loaded or #store.packages_full == 0 then
store.load()
end

Expand Down

0 comments on commit f12d374

Please sign in to comment.