fix missing restricted_opts from shared

This commit is contained in:
AUTOMATIC1111 2023-08-09 15:06:03 +03:00
parent aa10faa591
commit 7ba8f11688
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ face_restorers = []
options_templates = None
opts = None
restricted_opts = None
sd_model: LatentDiffusion = None

View File

@ -20,6 +20,7 @@ def initialize():
from modules import options, shared_options
shared.options_templates = shared_options.options_templates
shared.opts = options.Options(shared_options.options_templates, shared_options.restricted_opts)
shared.restricted_opts = shared_options.restricted_opts
if os.path.exists(shared.config_filename):
shared.opts.load(shared.config_filename)