Prevent stateful powerwash when returning to verified

This commit is contained in:
MunyDev 2024-08-15 09:47:20 -04:00
parent 5591a5ce07
commit 5ad24ae697
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ const axios = require('axios').default;
* @param {import("../../proxy").FilterInfo} f
*/
function filter(f) {
console.log(f.tls);
if (f.tls) {
return true;
}

View File

@ -236,7 +236,7 @@ server.on('error', (err) => {
server.on('close', () => {
console.log('Client Disconnected');
});
server.listen(8125, () => {
console.log('Server running at http://localhost:' + 8125);
server.listen(8126, () => {
console.log('Server running at http://localhost:' + 8126);
});
//Source code below is for creating a mini server or a server that serves requests within memory.(or not)