mirror of
https://github.com/smittix/intercept.git
synced 2026-04-26 23:59:59 -07:00
fix(wifi): radar bssidToAngle divisor, Firefox SVG transform-origin, zone label clarity
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1497,7 +1497,7 @@ const WiFiMode = (function() {
|
||||
for (let i = 0; i < bssid.length; i++) {
|
||||
hash = (hash * 31 + bssid.charCodeAt(i)) & 0xffffffff;
|
||||
}
|
||||
return (hash >>> 0) / 0xffffffff * 2 * Math.PI;
|
||||
return (hash >>> 0) / 0x100000000 * 2 * Math.PI;
|
||||
}
|
||||
|
||||
function renderRadar(networksList) {
|
||||
|
||||
Reference in New Issue
Block a user