Reset appIsInstalled signature

This commit is contained in:
Vincent Roth 2018-12-11 19:07:33 +01:00 committed by GitHub
parent ebf97733be
commit fbdb79dee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,8 +43,8 @@ FileOpener2.prototype.uninstall = function (packageId, callbackContext) {
exec(callbackContext.success || null, callbackContext.error || null, 'FileOpener2', 'uninstall', [packageId]);
};
FileOpener2.prototype.appIsInstalled = function (packageId, options) {
options = options || {};
FileOpener2.prototype.appIsInstalled = function (packageId, callbackContext) {
callbackContext = callbackContext || {};
exec(options.success || null, options.error || null, 'FileOpener2', 'appIsInstalled', [packageId]);
};