Also check qrz API key for empty string

这个提交包含在:
phl0 2023-12-14 16:08:17 +01:00
父节点 64554939eb
当前提交 e4138dc22d
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -89,6 +89,7 @@ class User_Model extends CI_Model {
function hasQrzKey($user_id) {
$this->db->where('station_profile.qrzapikey is not null');
$this->db->where('station_profile.qrzapikey != ""');
$this->db->join('station_profile', 'station_profile.user_id = '.$user_id);
$query = $this->db->get($this->config->item('auth_table'));