Correct error message. Empty file is not necessarily a failed login to

LotW ...
这个提交包含在:
phl0 2023-04-11 22:58:50 +02:00
父节点 6e54a915d4
当前提交 9d76681c05
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -359,7 +359,6 @@ class Lotw extends CI_Controller {
| Download QSO Matches from LoTW | Download QSO Matches from LoTW
*/ */
echo "<br><br>"; echo "<br><br>";
echo "LoTW Matches<br>";
echo $this->lotw_download(); echo $this->lotw_download();
} }
@ -580,6 +579,7 @@ class Lotw extends CI_Controller {
unlink($filepath); unlink($filepath);
if(isset($data['lotw_table_headers'])) { if(isset($data['lotw_table_headers'])) {
echo "LoTW Matches<br>";
if($display_view == TRUE) { if($display_view == TRUE) {
$data['page_title'] = "LoTW ADIF Information"; $data['page_title'] = "LoTW ADIF Information";
$this->load->view('interface_assets/header', $data); $this->load->view('interface_assets/header', $data);
@ -589,7 +589,7 @@ class Lotw extends CI_Controller {
return $tableheaders.$table; return $tableheaders.$table;
} }
} else { } else {
echo "LoTW Downloading failed either due to it being down or incorrect logins."; echo "Downloaded LotW report contains no matches.";
} }
} }