From 5c22ead586e9621e3f42a5260a06e2212be46f8e Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Mon, 28 Dec 2020 13:45:06 +0000 Subject: [PATCH] [LoTW][Sync] Small bug in the update code --- application/models/LotwCert.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/LotwCert.php b/application/models/LotwCert.php index 9a4af0006..c0c6c1229 100644 --- a/application/models/LotwCert.php +++ b/application/models/LotwCert.php @@ -67,6 +67,7 @@ class LotwCert extends CI_Model { $this->db->where('user_id', $user_id); $this->db->where('callsign', $callsign); + $this->db->where('cert_dxcc', $dxcc); $this->db->update('lotw_certs', $data); }