Fix #597 - [bugfix] querylog_top: Empty domain gets to the Top Queried domains

This commit is contained in:
Aleksey Dmitrevskiy 2019-02-28 16:19:23 +03:00
parent 9a6266588d
commit 53d680a5df
1 changed files with 6 additions and 1 deletions

View File

@ -9,8 +9,8 @@ import (
"sync"
"time"
"github.com/bluele/gcache"
"github.com/AdguardTeam/golibs/log"
"github.com/bluele/gcache"
"github.com/miekg/dns"
)
@ -158,6 +158,11 @@ func (d *dayTop) addEntry(entry *logEntry, q *dns.Msg, now time.Time) error {
hostname := strings.ToLower(strings.TrimSuffix(q.Question[0].Name, "."))
// if question hostname is empty, do nothing
if hostname == "" {
return nil
}
// get value, if not set, crate one
d.hoursReadLock()
defer d.hoursReadUnlock()