[release] v0.9.3

This commit is contained in:
Yann Stepienik 2023-07-05 12:47:33 +01:00
parent 6d162c6987
commit 85682f7f05
3 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,6 @@
## Version 0.9.1 > 0.9.2
## Version 0.9.1 > 0.9.3
- Fix subdomain logic for composed TLDs
- Fix domain depupe logic
## Version 0.9.0
- Rewrote the entire HTTPS / DNS challenge system to be more robust and easier to use

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.9.2",
"version": "0.9.3",
"description": "",
"main": "test-server.js",
"bugs": {

View file

@ -371,7 +371,7 @@ func GetAllHostnames(applyWildCard bool, removePorts bool) []string {
}
for _, hostname := range uniqueHostnames {
if hostname != mainHostname && !strings.HasSuffix(hostname, "."+mainHostname) {
if hostname != bareMainHostname && !strings.HasSuffix(hostname, "." + bareMainHostname) {
filteredHostnames = append(filteredHostnames, hostname)
}
}