Fixed TabTies session (de)serialization bugs.

This commit is contained in:
hackademix 2024-11-19 22:40:03 +01:00
parent 558e37b91e
commit fd33d7b3ce
No known key found for this signature in database
GPG Key ID: 231A83AFDA9C2434
2 changed files with 6 additions and 2 deletions

View File

@ -664,7 +664,11 @@
onBeforeSendHeaders(request) {
normalizeRequest(request);
let lanRes = checkLANRequest(request);
if (!UA.isMozilla) return lanRes; // Chromium doesn't support async blocking suspension, stop here
if (!UA.isMozilla) {
// Chromium doesn't support async blocking suspension, stop here
// (Skip TabGuard on Chromium/MV3 until alternative tech is available)
return lanRes;
}
if (lanRes === ABORT) return ABORT;
// redirection loop test
let pending = pendingRequests.get(request.requestId);

@ -1 +1 @@
Subproject commit eb866bccb0b9cb40ee45be94077ab5c6e1395a7e
Subproject commit 62f15694428724f991d08a8cb2177140bd298d8a