WiFi 보정값 표시 방식 정리
This commit is contained in:
+2
-2
@@ -2192,7 +2192,7 @@ function format_estimated_mbps(float $mbps): string
|
||||
? (string)(int)round($mbps)
|
||||
: number_format($mbps, 1);
|
||||
|
||||
return $value . ' MBit/s (추정)';
|
||||
return $value . ' MBit/s';
|
||||
}
|
||||
|
||||
function apply_wifi_estimates(array $clients): array
|
||||
@@ -2208,7 +2208,7 @@ function apply_wifi_estimates(array $clients): array
|
||||
$signalDbm = $sourceRate > 0
|
||||
? estimate_wifi_signal_from_rate($band, $sourceRate)
|
||||
: ($band === '5G' ? -67 : -70);
|
||||
$client['signal'] = $signalDbm . ' dBm (추정)';
|
||||
$client['signal'] = $signalDbm . ' dBm';
|
||||
$client['signal_source'] = $sourceRate > 0 ? 'estimated_from_rate' : 'estimated_default';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user