Fix some minor eQSL-Issues where values aren't set

This commit is contained in:
int2001
2024-09-14 09:27:37 +00:00
parent c788bbfa93
commit 2783015761
2 changed files with 2 additions and 2 deletions

View File

@@ -156,7 +156,7 @@ class EqslImporter
// If there's a match for the QSO from the report in our log, it's confirmed via eQSL.
// If we have a positive match from eQSL, record it in the DB according to the user's preferences
if ($record['qsl_sent'] == "Y") {
if ( (array_key_exists('qsl_sent',$record)) && ($record['qsl_sent'] == "Y")) {
$record['qsl_sent'] = $config['eqsl_rcvd_mark'];
}