diff --git a/src/settings.js b/src/settings.js index 9b5102e..ecaa87b 100644 --- a/src/settings.js +++ b/src/settings.js @@ -29,6 +29,9 @@ module.exports = function Settings({oauth}) { key = "contact_username"; val = val.username; } + if (key == "email") { + key = "contact_email"; + } if (typeof val != "object") { formDataInfo.append(key, val); } @@ -63,7 +66,7 @@ function editableObject(obj, path=[]) { const readOnlyKeys = ["uri", "version", "urls_streaming_api", "stats"]; const hiddenKeys = ["contact_account_", "urls"]; const explicitShownKeys = ["contact_account_username"]; - const implementedKeys = "title, contact_account_username, contact_email, short_description, description, terms, avatar, header".split(", "); + const implementedKeys = "title, contact_account_username, email, short_description, description, terms, avatar, header".split(", "); let listing = Object.entries(obj).map(([key, val]) => { let fullkey = [...path, key].join("_");