mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
Add engine version string to ContentDB API request (#9890)
This commit is contained in:
parent
6456aba73f
commit
b3c79906d4
1 changed files with 3 additions and 2 deletions
|
@ -198,10 +198,11 @@ function store.load()
|
||||||
|
|
||||||
assert(core.create_dir(tmpdir))
|
assert(core.create_dir(tmpdir))
|
||||||
|
|
||||||
local base_url = core.settings:get("contentdb_url")
|
local version = core.get_version()
|
||||||
|
local base_url = core.settings:get("contentdb_url")
|
||||||
local url = base_url ..
|
local url = base_url ..
|
||||||
"/api/packages/?type=mod&type=game&type=txp&protocol_version=" ..
|
"/api/packages/?type=mod&type=game&type=txp&protocol_version=" ..
|
||||||
core.get_max_supp_proto()
|
core.get_max_supp_proto() .. "&engine_version=" .. version.string
|
||||||
|
|
||||||
for _, item in pairs(core.settings:get("contentdb_flag_blacklist"):split(",")) do
|
for _, item in pairs(core.settings:get("contentdb_flag_blacklist"):split(",")) do
|
||||||
item = item:trim()
|
item = item:trim()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue