Browse Source

bugfix missing prop

wip-v3
AJ ONeal 5 years ago
parent
commit
f363f5ef02
  1. 1
      browser.js
  2. 1
      native.js

1
browser.js

@ -3,6 +3,7 @@
var native = module.exports;
native._canCheck = function(me) {
me._canCheck = {};
return me
.request({ url: me._baseUrl + '/api/_acme_api_/' })
.then(function(resp) {

1
native.js

@ -5,6 +5,7 @@ var promisify = require('util').promisify;
var resolveTxt = promisify(require('dns').resolveTxt);
native._canCheck = function(me) {
me._canCheck = {};
me._canCheck['http-01'] = true;
me._canCheck['dns-01'] = true;
return Promise.resolve();

Loading…
Cancel
Save