From 626b0b7e6a61d329e2b94a0f1ca15db6625b5e5d Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 3 Feb 2019 17:54:56 +0000 Subject: Add setting to hide mature content from ContentDB --- builtin/mainmenu/dlg_contentstore.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'builtin/mainmenu') diff --git a/builtin/mainmenu/dlg_contentstore.lua b/builtin/mainmenu/dlg_contentstore.lua index ab55e3848..655e596d4 100644 --- a/builtin/mainmenu/dlg_contentstore.lua +++ b/builtin/mainmenu/dlg_contentstore.lua @@ -285,9 +285,14 @@ function store.load() local show_nonfree = core.settings:get_bool("show_nonfree_packages") local url = base_url .. "/api/packages/?type=mod&type=game&type=txp&protocol_version=" .. - core.get_max_supp_proto() .. - "&nonfree=" .. - (show_nonfree and "true" or "false") + core.get_max_supp_proto() + + for _, item in pairs(core.settings:get("contentdb_flag_blacklist"):split(",")) do + item = item:trim() + if item ~= "" then + url = url .. "&hide=" .. item + end + end core.download_file(url, target) -- cgit v1.2.3