Skip to content

Commit

Permalink
Fix erroneous reference to invalidPermissions. Fixes #42.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpa99c committed Mar 19, 2016
1 parent 8936044 commit a74c226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/android/diagnostic.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var Diagnostic = (function(){
}
});
if(invalidPermissions.length > 0){
errorCallback("Invalid permissions specified: "+result.invalidPermissions.join(", "));
errorCallback("Invalid permissions specified: "+invalidPermissions.join(", "));
valid = false;
}
return valid;
Expand Down

0 comments on commit a74c226

Please sign in to comment.