aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHJ <spam@hjkos.com>2019-01-24 12:15:46 +0000
committerHJ <spam@hjkos.com>2019-01-24 12:15:46 +0000
commit9305dad0057bc3a729b338fa11aa0f867dbb6c2f (patch)
tree76988bf667762d84da35a7461b6bdf34f5598a43 /src
parentc8caa477d7f9d6b793ba0f75c736510f47298014 (diff)
parent958557201a95f125f40392fbeb33c284301ca7fd (diff)
Merge branch 'fix/hide-network-setting' into 'develop'
Always send "hide_network" when updating user profile See merge request pleroma/pleroma-fe!471
Diffstat (limited to 'src')
-rw-r--r--src/services/api/api.service.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js
index 2b1ef5df..776d8dae 100644
--- a/src/services/api/api.service.js
+++ b/src/services/api/api.service.js
@@ -129,13 +129,14 @@ const updateBanner = ({credentials, params}) => {
// location
// description
const updateProfile = ({credentials, params}) => {
+ // Always include these fields, because they might be empty or false
+ const fields = ['description', 'locked', 'no_rich_text', 'hide_network']
let url = PROFILE_UPDATE_URL
const form = new FormData()
each(params, (value, key) => {
- /* Always include description, no_rich_text and locked, because it might be empty or false */
- if (key === 'description' || key === 'locked' || key === 'no_rich_text' || value) {
+ if (fields.includes(key) || value) {
form.append(key, value)
}
})