The previously working Lookup All QSOS feature is not longer working. I had an operation which was wiped out (names only) by this feature previously so the names are blank - the lookup does not look them up. Even though the edit QSO does look them up correctly and show details in both the QSO form entry and the full panel, the details do not get filled back into the QSO list grid.
Are the details in the export? I wonder if it’s just a display issue?
Yes - the export is good - just the display shows nothing
Actually all my operations are now blank - no names and they do not return. i.e. the names are not showing. And adding a new QSO does not enter the name in the display grid. Nor do names appear in a new operation. But the lookup info is correct
Just a small bug by looks of it, from missing changing of lookup
to guess
in couple of places in recent changes.
This seems to fix it for me @KI2D
diff --git a/src/extensions/data/call-history/CallHistoryExtension.js b/src/extensions/data/call-history/CallHistoryExtension.js
index 118518f..32cb248 100644
--- a/src/extensions/data/call-history/CallHistoryExtension.js
+++ b/src/extensions/data/call-history/CallHistoryExtension.js
@@ -34,7 +34,7 @@ const LookupHook = {
if (history && history[0] && (history[0].theirCall === callInfo?.call || history[0].theirCall === callInfo?.baseCall)) {
const historyData = JSON.parse(history[0].data)
if (historyData?.their?.qrzInfo) { // Old data was stored this way
- historyData.their.lookup = historyData.their?.qrzInfo
+ historyData.their.guess = historyData.their?.qrzInfo
}
if (historyData.their) {
diff --git a/src/screens/OperationScreens/OpLoggingTab/components/QSOItem.jsx b/src/screens/OperationScreens/OpLoggingTab/components/QSOItem.jsx
index 613a2e6..f2ba110 100644
--- a/src/screens/OperationScreens/OpLoggingTab/components/QSOItem.jsx
+++ b/src/screens/OperationScreens/OpLoggingTab/components/QSOItem.jsx
@@ -81,7 +81,7 @@ const QSOItem = React.memo(function QSOItem ({ qso, operation, ourInfo, onPress,
qso.their?.guess?.emoji + ' '
)}
{styles.smOrLarger && (
- qso.their?.name ?? qso.their?.lookup?.name ?? ''
+ qso.their?.name ?? qso.their?.guess?.name ?? ''
)}
</Text>
<Text style={styles.fields.icon}>
Sigh, I’ll fix it tonight and release pre8 in the morning.
Fixed in pre8 - thanks