From 706ef1a8a15e083d386593cfc5e430249aa6a650 Mon Sep 17 00:00:00 2001 From: sebingel Date: Mon, 6 Apr 2026 07:49:16 +0000 Subject: [PATCH] Fix incorrect connection status field mapping in Fritz!Box README The device information table in README.md incorrectly stated that the Connection Status field ("Active"/"Inactive") maps to devVendor in the devices table. In reality, watchedValue2 has no mapped_to_column entry in config.json, meaning the value is stored only in the plugin's own Plugins_FRITZBOX table and never promoted to the Devices table. A user following the documentation to filter or display Connection Status via devVendor would find no data there. Changes: - Correct the "Mapped To" column for Connection Status (README.md:86) Changed from "`devVendor` (shown as vendor field)" to "Plugin table only (not mapped to device fields)" to accurately reflect config.json behavior. Users now have a correct expectation: Connection Status is visible in the Fritz!Box plugin view but not in standard device columns. No functional code was changed. --- front/plugins/fritzbox/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/plugins/fritzbox/README.md b/front/plugins/fritzbox/README.md index 7f13740d..c4e31fa1 100755 --- a/front/plugins/fritzbox/README.md +++ b/front/plugins/fritzbox/README.md @@ -83,7 +83,7 @@ The plugin reports the following information for each device: | **MAC Address** | Device hardware address (normalized format) | `devMac` | | **IP Address** | Current IPv4 address | `devLastIP` | | **Hostname** | Device name from Fritz!Box | `devName` | -| **Connection Status** | "Active" or "Inactive" | `devVendor` (shown as vendor field) | +| **Connection Status** | "Active" or "Inactive" | Plugin table only (not mapped to device fields) | | **Interface Type** | WiFi / LAN / Guest Network | `devType` | ### Guest WiFi Feature