Procházet zdrojové kódy

Fix neural check in lua_cfg_transform.lua

check for neural.enabled to see if it's enabled. only checking for neural is always true unless someone messed with config files.
pull/4840/head
cyzOG9000 před 3 měsíci
rodič
revize
a8319f99d3
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      lualib/lua_cfg_transform.lua

+ 1
- 1
lualib/lua_cfg_transform.lua Zobrazit soubor

@@ -544,7 +544,7 @@ return function(cfg)
end

-- If neural network is enabled we MUST have `check_all_filters` flag
if cfg.neural then
if cfg.neural and cfg.neural.enabled then
if not cfg.options then
cfg.options = {}
end

Načítá se…
Zrušit
Uložit