fix(documentation): Refactored readme for clarity and consistency, fixed documentation typos

This commit is contained in:
2025-03-03 03:05:49 +00:00
parent 3748689c16
commit c0de8c59a2
4 changed files with 150 additions and 167 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartproxy',
version: '3.22.4',
version: '3.22.5',
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.'
}

View File

@@ -663,7 +663,7 @@ export class PortProxy {
const checkInterval = setInterval(() => {
if (this.connectionRecords.size === 0) {
clearInterval(checkInterval);
resolve();
resolve(); // lets resolve here as early as we reach 0 remaining connections
}
}, 1000);