Skip to content

Commit

Permalink
reset appIsInstalled exec
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRoth authored Dec 11, 2018
1 parent fbdb79d commit 6865e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/plugins.FileOpener2.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit 6865e95

Please sign in to comment.