ContentDB: Fix ungraceful crash on aliases when list download fails

Fixes #12267 and fixes #12154
pull/56/head
rubenwardy 2022-04-25 20:43:09 +01:00
parent 71a56c3552
commit e9e671078c
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ end
-- Unordered preserves the original order of the ContentDB API,
-- before the package list is ordered based on installed state.
local store = { packages = {}, packages_full = {}, packages_full_unordered = {} }
local store = { packages = {}, packages_full = {}, packages_full_unordered = {}, aliases = {} }
local http = core.get_http_api()