diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-07-06 22:51:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 22:51:06 +0200 |
commit | 744f1dd5638c7924be9c19621033d67991c65fd2 (patch) | |
tree | 9e1ccedcda433534195d5a98c0f8f9c065fc996e /apps/settings | |
parent | 72274cf0e9186f86187678e7247c9fe17ec0c947 (diff) | |
parent | a0f5aebb89da4f18b37026e72e543bbe66b32980 (diff) | |
download | nextcloud-server-744f1dd5638c7924be9c19621033d67991c65fd2.tar.gz nextcloud-server-744f1dd5638c7924be9c19621033d67991c65fd2.zip |
Merge pull request #33052 from nextcloud/fix/set-display-name
Do not send display name twice for saving
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/js/federationsettingsview.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings/js/federationsettingsview.js b/apps/settings/js/federationsettingsview.js index 9eb0b930733..e05cc9f20f4 100644 --- a/apps/settings/js/federationsettingsview.js +++ b/apps/settings/js/federationsettingsview.js @@ -128,7 +128,8 @@ _.each(this._inputFields, function(field) { if ( field === 'avatar' || - field === 'email' + field === 'email' || + field === 'displayname' ) { return; } |