reset appIsInstalled exec

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

View File

@ -45,7 +45,7 @@ FileOpener2.prototype.uninstall = function (packageId, callbackContext) {
FileOpener2.prototype.appIsInstalled = function (packageId, callbackContext) {
callbackContext = callbackContext || {};
exec(options.success || null, options.error || null, 'FileOpener2', 'appIsInstalled', [packageId]);
exec(callbackContext.success || null, callbackContext.error || null, 'FileOpener2', 'appIsInstalled', [packageId]);
};
module.exports = new FileOpener2();