Fixed TabTies session (de)serialization bugs.
This commit is contained in:
parent
558e37b91e
commit
fd33d7b3ce
|
@ -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);
|
||||
|
|
2
src/nscl
2
src/nscl
|
@ -1 +1 @@
|
|||
Subproject commit eb866bccb0b9cb40ee45be94077ab5c6e1395a7e
|
||||
Subproject commit 62f15694428724f991d08a8cb2177140bd298d8a
|
Loading…
Reference in New Issue