browser-with-fingerprints
Advanced tools
Comparing version 1.2.9 to 1.2.10
@@ -7,3 +7,3 @@ { | ||
"author": "CheshireCaat", | ||
"version": "1.2.9", | ||
"version": "1.2.10", | ||
"license": "MIT", | ||
@@ -10,0 +10,0 @@ "bugs": { |
@@ -40,2 +40,4 @@ # browser-with-fingerprints | ||
Please note that according to the [architecture](#architecture) section, this plugin can only be installed and used on **Windows** operating system. | ||
## Other plugins | ||
@@ -313,2 +315,5 @@ | ||
Please be careful not to attach various **secrets** in your code or screenshots - for example, fingerprint service keys, account passwords, and so on. | ||
In the case of service keys, this can lead to their blocking without a refund. | ||
If the recommendations are not followed, your ticket may be ignored. | ||
@@ -315,0 +320,0 @@ |
@@ -9,4 +9,4 @@ const { env } = require('process'); | ||
async function call(name, params = {}) { | ||
server.listen(); | ||
let timer = null; | ||
await server.start(); | ||
return await lock.acquire('client', async () => { | ||
@@ -13,0 +13,0 @@ try { |
const net = require('net'); | ||
const once = require('once'); | ||
exports.start = once((...args) => { | ||
exports.listen = once(() => { | ||
let id = 0; | ||
@@ -23,2 +23,8 @@ | ||
server.on('error', ({ code }) => { | ||
if (code === 'EADDRINUSE') { | ||
setTimeout(() => server.listen(PORT, 'localhost'), 1000).unref(); | ||
} | ||
}); | ||
server.listen(PORT, 'localhost', resolve).unref(); | ||
@@ -25,0 +31,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1056384
833
342