mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 15:15:44 -03:00
Fix the problem of repeatedly trying to fetch model description metadata when the model has a null description.
This commit is contained in:
@@ -190,7 +190,7 @@ class CivitaiClient:
|
||||
|
||||
# Extract relevant metadata
|
||||
metadata = {
|
||||
"description": data.get("description", ""),
|
||||
"description": data.get("description") or "No model description available",
|
||||
"tags": data.get("tags", [])
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user