File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1+ * .bak
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ while true; do
114114 case " $iface " in
115115 wlan* ) new_mode=" Wi-Fi" ;;
116116 rmnet* ) new_mode=" Cellular" ;;
117+ ccmni* ) new_mode=" Cellular" ;;
117118 * ) new_mode=" none" ;;
118119 esac
119120
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export async function updateModuleStatus () {
1212 {
1313 active_iface = await get_active_iface ( ) ;
1414 active_iface = active_iface ? active_iface : "None" ;
15- active_iface_type = active_iface . startsWith ( "rmnet" ) ? "Cellular 📶" : active_iface . startsWith ( "wlan" ) ? "Wi-Fi 🛜" : "Unknown ⁉️" ;
15+ active_iface_type = active_iface . startsWith ( "rmnet" ) || active_iface . startsWith ( "ccmni" ) ? "Cellular 📶" : active_iface . startsWith ( "wlan" ) ? "Wi-Fi 🛜" : "Unknown ⁉️" ;
1616 active_algorithm = await get_active_algorithm ( ) ;
1717 active_InitcwndInitrwndValue = await getInitcwndInitrwndValue ( ) ;
1818 } catch ( error ) {
You can’t perform that action at this time.
0 commit comments