From: rubenwardy Date: Sun, 3 Feb 2019 19:54:43 +0000 (+0000) Subject: Content store: Fix assertion failed on unsuccessful package list fetch X-Git-Tag: 5.0.0~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5b965e08bd8795c71ab9a6d9474c2cf3bd3a7d17;p=oweals%2Fminetest.git Content store: Fix assertion failed on unsuccessful package list fetch Fixes #8168 --- diff --git a/builtin/mainmenu/dlg_contentstore.lua b/builtin/mainmenu/dlg_contentstore.lua index 655e596d4..a8dc072d5 100644 --- a/builtin/mainmenu/dlg_contentstore.lua +++ b/builtin/mainmenu/dlg_contentstore.lua @@ -15,7 +15,7 @@ --with this program; if not, write to the Free Software Foundation, Inc., --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -local store = {} +local store = { packages = {}, packages_full = {} } local package_dialog = {} -- Screenshot @@ -396,8 +396,6 @@ function store.filter_packages(query) end function store.get_formspec() - assert(store.loaded) - store.update_paths() local pages = math.ceil(#store.packages / num_per_page)