We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c50af4 commit e85cce9Copy full SHA for e85cce9
1 file changed
photomap/backend/metadata_modules/invoke/v5.py
@@ -92,7 +92,7 @@ def _get_reference_images(self) -> list[ReferenceImage]:
92
93
reference_image_list = []
94
for image in reference_images:
95
- if image.get("isEnabled", False) == False:
+ if image.get("isEnabled", False) is False:
96
continue
97
model = image.get("config", {}).get("model", {}) or {}
98
model_name = model.get("name", "N/A")
0 commit comments