Parcourir la source

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 il y a 2 mois
Parent
révision
a8319f99d3
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      lualib/lua_cfg_transform.lua

+ 1
- 1
lualib/lua_cfg_transform.lua Voir le fichier

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

Chargement…
Annuler
Enregistrer