Skip to content

Commit 90c644a

Browse files
committed
Support all rmnet and ccmni interfaces as Cellular
1 parent e391eb4 commit 90c644a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module/webroot/js/home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function updateModuleStatus () {
1414
module_status = (await getModuleActiveState()) == true ? "Enabled ✅" : "Disabled ❌";
1515
active_iface = await get_active_iface();
1616
active_iface = active_iface ? active_iface : "None";
17-
active_iface_type = active_iface.match("rmnet") || active_iface.match("rmnet") ? "Cellular 📶" : active_iface.startsWith("wlan") || active_iface.startsWith("tun") ? "Wi-Fi 🛜" : "Unknown ⁉️";
17+
active_iface_type = active_iface.match("rmnet") || active_iface.match("ccmni") ? "Cellular 📶" : active_iface.startsWith("wlan") || active_iface.startsWith("tun") ? "Wi-Fi 🛜" : "Unknown ⁉️";
1818
active_algorithm = await get_active_algorithm();
1919
active_InitcwndInitrwndValue = await getInitcwndInitrwndValue();
2020
if(active_iface_type == "Wi-Fi 🛜")

0 commit comments

Comments
 (0)