From 515236671745c99b19cb95a549bbf41f1f38cf5c Mon Sep 17 00:00:00 2001 From: rouggy Date: Thu, 16 Jul 2026 08:56:18 +0200 Subject: [PATCH] fix: MY_NAME adif field was not filled --- app.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.go b/app.go index f8d5e53..1036375 100644 --- a/app.go +++ b/app.go @@ -2090,6 +2090,11 @@ func (a *App) applyStationDefaults(q *qso.QSO, includeIdentity bool) { if q.MyPOTARef == "" { q.MyPOTARef = p.MyPOTARef } + // MY_NAME = the operator's personal name (profile OpName, e.g. "Greg") — stamped + // like the other My* fields so every QSO carries it, not just those edited by hand. + if q.MyName == "" { + q.MyName = p.OpName + } // Per-band rig/antenna from Operating conditions (the antenna ticked as // DEFAULT for this band) — the same auto-fill the entry strip does, applied // here so imported QSOs get MY_RIG / MY_ANTENNA from the band defaults.