mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-11 00:00:05 +08:00
Setting ContactFindOptions to correct defaults
This commit is contained in:
@@ -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 || '';
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user