Do no to overwrite the password when updating the account info

This commit is contained in:
Alex Tselegidis 2022-05-20 18:14:45 +02:00
parent 905dd59425
commit b253a002a8
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ App.Pages.Account = (function () {
timezone: $timezone.val(),
settings: {
username: $username.val(),
password: $password.val() || null,
password: $password.val() || undefined,
calendar_view: $calendarView.val(),
notifications: Number(notifications.prop('checked'))
}