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

Fix missing progress key on import

This commit is contained in:
Thomas Tanghus 2013-10-24 14:36:11 +02:00
parent 7f07d14ae7
commit 24dbbdc7c0
2 changed files with 2 additions and 2 deletions

View File

@ -411,7 +411,7 @@ OC.Contacts = OC.Contacts || {};
done = true;
});
interval = setInterval(function() {
getStatus(data.backend, data.addressbookid, data.progresskey, interval, done);
getStatus(data.backend, data.addressBookId, data.progresskey, interval, done);
}, 1500);
} else {
defer.reject(response);

View File

@ -584,7 +584,7 @@ OC.Contacts = OC.Contacts || {};
'contacts_import_status',
'GET',
{backend: backend, addressBookId: addressBookId},
JSON.stringify(params)
params
);
};