security/etpro-telemetry: always show an available status

Bump version to clear the relatively hight revision count.
This commit is contained in:
Franco Fichtner
2025-10-06 15:11:42 +02:00
parent 3f9299b3aa
commit a75a87d0b5
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
PLUGIN_NAME= etpro-telemetry
PLUGIN_VERSION= 1.7
PLUGIN_REVISION= 6
PLUGIN_VERSION= 1.8
PLUGIN_COMMENT= ET Pro Telemetry Edition
PLUGIN_MAINTAINER= ad@opnsense.org
PLUGIN_DEPENDS= py${PLUGIN_PYTHON}-netaddr
@@ -41,7 +41,7 @@ export default class ETProTelemetry extends BaseTableWidget {
async onWidgetTick() {
const data = await this.ajaxCall('/api/diagnostics/proofpoint_et/status');
if (data['sensor_status'].toLowerCase() == 'active') {
if (data['sensor_status'].length) {
$('#etpro_sensor_status').text(data['sensor_status']);
$('#etpro_event_received').text(data['event_received']);
$('#etpro_last_rule_download').text(data['last_rule_download']);