1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2024-09-21 07:41:35 +02:00

Fixed account preference saving

Saving preferences was still invoking an old method removed since the unification of the backend
This commit is contained in:
Clipperz 2013-01-10 09:37:28 +01:00
parent 6642b868f7
commit fac609cf15

View File

@ -179,7 +179,8 @@ Clipperz.PM.DataModel.UserPreferences.prototype = MochiKit.Base.update(null, {
return {user:res};
})
deferredResult.addCallback(Clipperz.NotificationCenter.deferredNotification, this, 'updatedProgressState', 'account_savingPreferences_2');
deferredResult.addCallback(MochiKit.Base.method(this.user().connection(), 'message'), 'updateData');
// deferredResult.addCallback(MochiKit.Base.method(this.user().connection(), 'message'), 'updateData');
deferredResult.addCallback(MochiKit.Base.method(this.user().connection(), 'message'), 'saveChanges');
deferredResult.addCallback(Clipperz.PM.Components.MessageBox().hide, YAHOO.ext.Element.get('main'));
deferredResult.addCallback(Clipperz.NotificationCenter.deferredNotification, this, 'updatedPreferences', null);