fix model loading twice in some situations

This commit is contained in:
AUTOMATIC
2023-05-14 13:27:50 +03:00
parent 5f5435eb1a
commit 1a43524018
2 changed files with 6 additions and 0 deletions

View File

@@ -414,6 +414,9 @@ class SdModelData:
def get_sd_model(self):
if self.sd_model is None:
with self.lock:
if self.sd_model is not None:
return self.sd_model
try:
load_model()
except Exception as e: