mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: url icon (#4097)
This commit is contained in:
parent
1a13de2ee9
commit
109ebaf989
@ -41,9 +41,12 @@ pub fn user_profile_from_af_profile(
|
|||||||
.metadata
|
.metadata
|
||||||
.map(|m| {
|
.map(|m| {
|
||||||
(
|
(
|
||||||
m.get(USER_METADATA_ICON_URL).map(|v| v.to_string()),
|
m.get(USER_METADATA_ICON_URL)
|
||||||
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()),
|
||||||
m.get(USER_METADATA_STABILITY_AI_KEY).map(|v| v.to_string()),
|
m.get(USER_METADATA_OPEN_AI_KEY)
|
||||||
|
.map(|v| v.as_str().map(|s| s.to_string()).unwrap_or_default()),
|
||||||
|
m.get(USER_METADATA_STABILITY_AI_KEY)
|
||||||
|
.map(|v| v.as_str().map(|s| s.to_string()).unwrap_or_default()),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
|
Loading…
Reference in New Issue
Block a user