Переглянути джерело

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 3 місяці тому
джерело
коміт
a8319f99d3
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      lualib/lua_cfg_transform.lua

+ 1
- 1
lualib/lua_cfg_transform.lua Переглянути файл

@@ -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

Завантаження…
Відмінити
Зберегти