Skip to content
Snippets Groups Projects
Commit cd3bf461 authored by eal's avatar eal
Browse files

Merge branch 'develop' into 'develop'

Always include bio in updates, because it might be empty (optional)

See merge request pleroma/pleroma-fe!209
parents cbd113f7 cfde2fe4
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,8 @@ const updateProfile = ({credentials, params}) => {
const form = new FormData()
each(params, (value, key) => {
if (value) {
if (key === 'description' || /* Always include description, because it might be empty */
value) {
form.append(key, value)
}
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment