This repository was archived by the owner on Jun 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ class Background {
5454 constructor ( ) {
5555 log ( "constructor" ) ;
5656
57+ this . connectionId = 0 ;
5758 this . survey = new Survey ( ) ;
5859 this . exemptTabStatus = new Map ( ) ;
5960 this . fxaEndpoints = new Map ( ) ;
@@ -484,7 +485,7 @@ class Background {
484485 host : this . proxyHost ,
485486 port : this . proxyPort ,
486487 proxyAuthorizationHeader : this . proxyAuthorizationHeader ,
487- connectionIsolationKey : this . proxyAuthorizationHeader + additionalConnectionIsolation ,
488+ connectionIsolationKey : this . proxyAuthorizationHeader + additionalConnectionIsolation + this . connectionId ,
488489 } ] ;
489490 }
490491
@@ -972,6 +973,7 @@ class Background {
972973 }
973974
974975 async onConnectivityChanged ( connectivity ) {
976+ this . connectionId += 1 ;
975977 log ( "connectivity changed!" ) ;
976978
977979 // Offline -> online.
You can’t perform that action at this time.
0 commit comments