fix: icon url

This commit is contained in:
nathan 2023-12-06 03:05:07 +08:00
parent 109ebaf989
commit 69d3181a64

View File

@ -216,13 +216,13 @@ where
.map(|m| {
(
m.get(USER_METADATA_ICON_URL)
.map(|v| v.to_string())
.map(|v| v.as_str().map(|s| s.to_string()).unwrap_or_default())
.unwrap_or_default(),
m.get(USER_METADATA_OPEN_AI_KEY)
.map(|v| v.to_string())
.map(|v| v.as_str().map(|s| s.to_string()).unwrap_or_default())
.unwrap_or_default(),
m.get(USER_METADATA_STABILITY_AI_KEY)
.map(|v| v.to_string())
.map(|v| v.as_str().map(|s| s.to_string()).unwrap_or_default())
.unwrap_or_default(),
)
})