mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 07:05:43 -03:00
fix(routes): skip tag check in model validation to allow empty tags
This commit is contained in:
@@ -620,7 +620,7 @@ class BaseModelRoutes(ABC):
|
|||||||
and (
|
and (
|
||||||
not model.get('civitai')
|
not model.get('civitai')
|
||||||
or not model['civitai'].get('id')
|
or not model['civitai'].get('id')
|
||||||
or not model.get('tags')
|
# or not model.get('tags') # Skipping tag cause it could be empty legitimately
|
||||||
or not model.get('modelDescription')
|
or not model.get('modelDescription')
|
||||||
or not (model.get('civitai') and model['civitai'].get('creator'))
|
or not (model.get('civitai') and model['civitai'].get('creator'))
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user