1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

Fix wrong var on error in groups deletion.

This commit is contained in:
Thomas Tanghus 2013-08-03 14:35:58 +02:00
parent 20694185ed
commit 8701cfd444

View File

@ -35,7 +35,7 @@ OC.Contacts = OC.Contacts || {};
var id = $(event.target).parents('li').first().data('id');
self.deleteGroup(id, function(response) {
if(response.error) {
OC.notify({message:response.data.message});
OC.notify({message:response.message});
}
});
} else if($(event.target).is('.action.edit')) {