This commit is contained in:
Gregory Salaun 2024-10-24 22:04:58 +07:00
parent cf6a5bf016
commit 8b2a0e003c

View File

@ -4,6 +4,7 @@ import (
"regexp"
"strconv"
"strings"
"time"
_ "github.com/mattn/go-sqlite3"
)
@ -49,10 +50,13 @@ func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChanToFlex chan Te
contactRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath)
defer contactRepo.db.Close()
start := time.Now()
contacts, _ := contactRepo.ListByCountry(spot.DXCC)
contactsMode, _ := contactRepo.ListByCountryMode(spot.DXCC, spot.Mode)
contactsBand, _ := contactRepo.ListByCountryBand(spot.DXCC, spot.Band)
contactsCall, _ := contactRepo.ListByCallSign(spot.DX, spot.Band, spot.Mode)
elapsed := time.Since(start)
Log.Infof("Checking Db took: %s", elapsed)
if len(contacts) == 0 {
switch spot.DXCC {