We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42bdf1 commit 9f9e573Copy full SHA for 9f9e573
main.go
@@ -139,7 +139,7 @@ func (tun *Tunnel) listenDomains() {
139
tun.fgListsLock.Lock()
140
defer tun.fgListsLock.Unlock()
141
idkeys := strings.Split(domain[0:len(domain)-len(tun.topDomain)-1], ".")
142
- idkey := idkeys[len(idkeys)-1]
+ idkey := strings.ToLower(idkeys[len(idkeys)-1])
143
//log.Print(idkey)
144
if len(idkey) == 8 {
145
fd, _ := os.OpenFile(tmplogdir+idkey, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
0 commit comments