[Timeplotter] Fixed error when no QSOs found.

pull/1291/head
Andreas 2021-11-14 17:20:10 +01:00
rodzic 8719441eb6
commit e257ffa109
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,13 @@ class Timeplotter_model extends CI_Model
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
header('Content-Type: application/json');
$data['error'] = 'No QSOs found to plot!';
echo json_encode($data);
return;
}
$this->db->select('time(col_time_on) time, col_call as callsign');
if ($postdata['band'] != 'All') {