ci: typinf

This commit is contained in:
Barrett Ruth 2026-03-06 23:05:56 -05:00
parent 4b6b51b8df
commit 1d8f01a2a7
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -65,13 +65,13 @@ function M.submit(opts)
local eff = plat_effective and plat_effective[language]
if eff then
if eff.submit_id then
submit_language = eff.submit_id
submit_language = eff.submit_id or submit_language
else
local ver = eff.version or constants.DEFAULT_VERSIONS[language]
if ver then
local versions = (constants.LANGUAGE_VERSIONS[platform] or {})[language]
if versions and versions[ver] then
submit_language = versions[ver]
submit_language = versions[ver] or submit_language
end
end
end