From b253a002a883c832a084bc2b28b32e9c55312885 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Fri, 20 May 2022 18:14:45 +0200 Subject: [PATCH] Do no to overwrite the password when updating the account info --- assets/js/pages/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/pages/account.js b/assets/js/pages/account.js index dee88455..7df833cd 100644 --- a/assets/js/pages/account.js +++ b/assets/js/pages/account.js @@ -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')) }