$int_list

This commit is contained in:
CHIEFSOFT\ameye
2024-09-06 11:57:38 -04:00
parent 8ea4e0ae87
commit fb6bf88b6c
+2 -1
View File
@@ -70,7 +70,8 @@ class WrenchJobs extends BaseController
}
$endpoint = "WRENCH_JOB_INTEREST_COUNT";
$out["interest_list"] = $this->getCache($endpoint);
$int_list = $this->getCache($endpoint)["result_list"];
$out["interest_list"] = ( isset($int_list) && is_array($int_list) ) ? $int_list : [];
log_message('critical', "***** ***** WrenchJobs::getJobsData Ret ");
return $this->respond( $this->summaryReturnData($in,$out), 200);