Stack overflow when deleting account
At line 59 in personal.js there is a stack overflow occuring when I try to delete an account:
function _deleteAccount() {
if (OC.PasswordConfirmation.requiresPasswordConfirmation()) {
OC.PasswordConfirmation.requirePasswordConfirmation(_.bind(_deleteAccount(), this));
If I remove the () from the _deleteAccount parameter it works correctly and prompts for the password then deletes the account.