This commit is contained in:
2025-10-19 10:53:52 +02:00
parent 0159c68fa5
commit fd4ad12e44
2 changed files with 226 additions and 226 deletions

View File

@@ -252,7 +252,7 @@ func (spot *TelnetSpot) GuessMode(rawSpot string) {
// ✅ Si pas de mode, deviner depuis la fréquence
if spot.Mode == "" {
freqInt, err := strconv.ParseFloat(spot.Frequency, 32)
Log.Debugf("No mode specified in spot, will guess from frequency %v with spot: %s", freqInt, strings.TrimSpace(rawSpot))
Log.Debugf("No mode specified in spot, will guess from frequency %v with spot: %s", spot.Frequency, strings.TrimSpace(rawSpot))
if err != nil {
Log.Errorf("could not convert frequency string to float: %v", err)
return