fix wrong parameter

This commit is contained in:
2018-11-29 11:12:41 +08:00
parent 0cd4f4d83d
commit 32e11f19f2

View File

@@ -1,5 +1,5 @@
var exec = require('cordova/exec');
exports.getAppSignature = function (arg0, success, error) {
exec(success, error, 'ReadAppSignature', 'getAppSignature', [arg0]);
exports.getAppSignature = function (success, error) {
exec(success, error, 'ReadAppSignature', 'getSignature', []);
};