Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
receyuki committed Jan 21, 2024
2 parents 63919f4 + a8e217d commit d6f8598
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,10 @@ def save_images(

hashes = {}
if calculate_hash:
model_hash = self.calculate_hash(model_name_real, "model")
model_hash_str = f"Model hash: {model_hash}, "
hashes["model"] = model_hash
if model_name_real:
model_hash = self.calculate_hash(model_name_real, "model")
model_hash_str = f"Model hash: {model_hash}, "
hashes["model"] = model_hash

if vae_name:
vae_hash = self.calculate_hash(vae_name, "vae")
Expand Down

0 comments on commit d6f8598

Please sign in to comment.