Set Activatorscount to 0 (instead of null) when no QSO was made yet

This commit is contained in:
int2001
2024-01-11 05:28:23 +00:00
parent f6ddbe1a69
commit 7ba5b7c258

View File

@@ -111,7 +111,7 @@ class Activators_model extends CI_Model
$max = $row->count;
}
return $max;
return ($max ?? 0);
}
}