fix: bug correction in awards where a reference regex was not checked

This commit is contained in:
2026-07-10 10:58:33 +02:00
parent efb61107fe
commit 6f2f9236b0
3 changed files with 52 additions and 4 deletions
+2
View File
@@ -6821,12 +6821,14 @@ func (a *App) runDownloadConfirmations(svc extsvc.Service, cfg extsvc.ExternalSe
} else {
emit(fmt.Sprintf("Downloading all LoTW confirmations for %s…", callLabel))
}
emit(fmt.Sprintf("Window: since=%q → resolved=%q (scope owncall=%q)", since, sinceDate, ownCall))
adifText, err := extsvc.DownloadLoTWConfirmations(ctx, nil, cfg.LoTW, sinceDate, ownCall)
if err != nil {
emit("Download failed: " + err.Error())
done(matched, total)
return
}
emit(fmt.Sprintf("LoTW returned %d KB of ADIF", len(adifText)/1024))
keyIDs, kerr := a.qso.DedupeKeyIDs(ctx)
if kerr != nil {
emit("Error reading local log: " + kerr.Error())