Fixed params when calling webadif via cron

这个提交包含在:
int2001 2023-07-31 09:13:28 +00:00
父节点 112d997ca5
当前提交 bc3002bf86
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -49,7 +49,7 @@ class Webadif extends CI_Controller {
*/
function mass_upload_qsos($station_id, $webadif_api_key, $webadif_api_url, $trusted = false) {
$i = 0;
$data['qsos'] = $this->logbook_model->get_webadif_qsos($station_id, $trusted);
$data['qsos'] = $this->logbook_model->get_webadif_qsos($station_id, null, null, $trusted);
$errormessages=array();
$CI =& get_instance();