From b32e51913ab6e95f08ad87f326e82ff109e22e22 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Thu, 13 Dec 2012 11:58:04 +0100 Subject: [PATCH] bugfix: removed contacts don't come back after restart --- lib/contacts.nsui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/contacts.nsui.js b/lib/contacts.nsui.js index 763f49e..107a77d 100644 --- a/lib/contacts.nsui.js +++ b/lib/contacts.nsui.js @@ -67,6 +67,7 @@ ContactList.prototype.rmContact = function(name) { if (this.lst.children[i].children[0].innerHTML === name) { this.lst.removeChild(this.lst.children[i]); delete this.contacts[name]; + this.save(); break ; } }