diff --git a/luci-app-system-hub/root/usr/libexec/rpcd/luci.system-hub b/luci-app-system-hub/root/usr/libexec/rpcd/luci.system-hub index 1f88011f..987b7ca2 100755 --- a/luci-app-system-hub/root/usr/libexec/rpcd/luci.system-hub +++ b/luci-app-system-hub/root/usr/libexec/rpcd/luci.system-hub @@ -656,7 +656,7 @@ save_settings() { # Get components (leverages secubox module detection) get_components() { # Call secubox backend to get modules, which are the system components - local result=$(ubus call luci.secubox get_modules 2>/dev/null) + local result=$(ubus call luci.secubox modules 2>/dev/null) if [ -n "$result" ]; then # Pass through the secubox modules as components @@ -681,7 +681,7 @@ get_components_by_category() { json_cleanup # Call secubox backend with category filter - local result=$(ubus call luci.secubox get_modules_by_category "{\"category\":\"$category\"}" 2>/dev/null) + local result=$(ubus call luci.secubox modules_by_category "{\"category\":\"$category\"}" 2>/dev/null) if [ -n "$result" ]; then echo "$result"