Display verbose error message instead of generic error

This commit is contained in:
Filip Melík
2025-02-23 13:37:20 +01:00
parent 668a3a9540
commit 9166973ce9

View File

@@ -157,7 +157,9 @@ class Widgets extends CI_Controller {
$this->load->view('widgets/on_air', $data);
} else {
show_404(__("No CAT interfaced radios found"));
show_error(
__("No CAT interfaced radios found. You need to have at least one radio interface configured.")
);
return;
}
}