dont process on close

This commit is contained in:
zefie
2025-08-09 20:20:57 -04:00
parent 92a958287d
commit f0c7b3d16c

View File

@@ -190,11 +190,11 @@ class WebTVClientSimulator {
if (idx === -1) idx = responseData.indexOf(lflf); if (idx === -1) idx = responseData.indexOf(lflf);
if (idx === -1) { if (idx === -1) {
this.debugLog('Processing incomplete response on close...'); this.debugLog('Processing incomplete response on close...');
this.handleResponse(responseData, resolve, reject, skipRedirects); //this.handleResponse(responseData, resolve, reject, skipRedirects);
} }
} else if (responseData.length > 0 && this.encryptionEnabled) { } else if (responseData.length > 0 && this.encryptionEnabled) {
this.debugLog('Processing encrypted response on close...'); this.debugLog('Processing encrypted response on close...');
this.handleEncryptedResponse(responseData, resolve, reject); //this.handleEncryptedResponse(responseData, resolve, reject);
} }
}); });