Remove fallback undefined to string.

This commit is contained in:
Christian Bastian
2024-07-25 08:31:47 -04:00
parent ca7f7246b6
commit 4bedbbd74f

View File

@@ -2814,7 +2814,7 @@ class Civitai {
return {
"name": modelInfo["name"],
"type": modelInfo["type"],
"description": modelInfo["description"] ?? "",
"description": modelInfo["description"],
"versions": modelVersions,
}
}