Setting ContactFindOptions to correct defaults

This commit is contained in:
macdonst
2010-10-19 00:27:21 +08:00
parent f15bdf9445
commit bc086cb93d
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -111,8 +111,8 @@ Contacts.prototype.create = function(properties) {
var ContactFindOptions = function(filter, multiple, limit, updatedSince) {
this.filter = filter || '';
this.multiple = multiple || true;
this.limit = limit || Number.MAX_VALUE;
this.multiple = multiple || false;
this.limit = limit || 1;
this.updatedSince = updatedSince || '';
};