Skip to content

Commit

Permalink
修复let's Encrypt,DNS验证域名获取不到的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
songchudong committed Mar 5, 2022
1 parent 63bd825 commit 0726d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BTPanel/static/js/site.js
Original file line number Diff line number Diff line change
Expand Up @@ -8189,7 +8189,7 @@ var site = {
callback: function (ldata) {
ldata['domains'] = [];
$('#ymlist .checked_default input[type="checkbox"]:checked').each(function () {
if(!ldata.check_dns && $(this).val().indexOf('*.') == -1) ldata['domains'].push($(this).val())
if(!(ldata.check_file && $(this).val().indexOf('*.') > -1)) ldata['domains'].push($(this).val())
})
var auth_type = 'http'
var auth_to = web.id
Expand Down

0 comments on commit 0726d28

Please sign in to comment.